aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/aboutme.html
blob: ee88d56c7eab37db21819ef142dc30f5ccc08cfc (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>