article.html 308 B

12345678910111213
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <section id="content" class="body">
  4. <footer class="post-info">
  5. {% if article.author_libravatar %}
  6. <div align="center">
  7. <img src="{{ article.author_libravatar }}">
  8. </div>
  9. {% endif %}
  10. </footer>
  11. </section>
  12. {% endblock %}