pelican-theme-bootstrap4/templates/includes/aboutme.html

16 lines
267 B
HTML

<div id="aboutme">
{% if AVATAR %}
<p>
<img width="100%" class="img-thumbnail" src="{{ SITEURL }}/{{ AVATAR }}"/>
</p>
{% endif %}
{% if ABOUT_ME %}
<p class="text-center">
<strong>{{ AUTHOR }}</strong>
</p>
<p>
{{ ABOUT_ME }}
</p>
{% endif %}
</div>