aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 0ac7ae5abe5c49908e161b2abd10331eea22fdff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends 'base.html' %}

{% block content %}
<style>
    .photo {
        border-radius: 50%;
        width: 256px;
        height: 256px;
        float: left;
        margin: 0 [x] [y] 0;
    }

    .text {
        /* clear: left; */
    }

    .wrapper {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
</style>

<section>
    <div>
        <img class="photo" src="/photo.jpg" alt="" align="middle">

        <div class="text">
            <h1>Website</h1>
        </div>
    </div>
</section>

{% endblock content %}