bootstrap4-theme/templates/includes/aboutme.html

14 lines
313 B
HTML
Raw Normal View History

2019-04-19 18:30:55 +00:00
<div id="aboutme">
{% if AVATAR %}
<p>
<img width="100%" class="img-thumbnail" src="{{ SITEURL }}/{{ AVATAR }}"/>
</p>
{% endif %}
{% if ABOUT_ME %}
2019-04-20 08:49:46 +00:00
<p class="text-center">
<strong>{{ AUTHOR }}</strong><br/>
2019-04-19 18:30:55 +00:00
{{ ABOUT_ME }}
</p>
{% endif %}
</div>