aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/aboutme.html
blob: 3dc1c1c3ecb46679ca939dab59fc0fbe1dc0fb9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div id="aboutme">
    {% if AVATAR %}
        <p>
            <img width="100%" class="img-thumbnail" src="{{ SITEURL }}/{{ AVATAR }}"/>
        </p>
    {% endif %}
    {% if ABOUT_ME %}
    <p>
        <strong>About {{ AUTHOR }}</strong><br/>
        {{ ABOUT_ME }}
    </p>
    {% endif %}
</div>