forked from varia/varia.website
13 lines
308 B
HTML
13 lines
308 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
<section id="content" class="body">
|
||
|
<footer class="post-info">
|
||
|
{% if article.author_libravatar %}
|
||
|
<div align="center">
|
||
|
<img src="{{ article.author_libravatar }}">
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</footer>
|
||
|
</section>
|
||
|
{% endblock %}
|