article_infos.html 758 B

12345678910111213141516171819202122
  1. <footer class="post-info">
  2. <abbr class="published" title="{{ article.date.isoformat() }}">
  3. Published: {{ article.locale_date }}
  4. </abbr>
  5. {% if article.modified %}
  6. <br />
  7. <abbr class="modified" title="{{ article.modified.isoformat() }}">
  8. Updated: {{ article.locale_modified }}
  9. </abbr>
  10. {% endif %}
  11. {% if article.authors %}
  12. <address class="vcard author">
  13. By {% for author in article.authors %}
  14. {{ author }}
  15. {% endfor %}
  16. </address>
  17. {% endif %}
  18. <p>In <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>.</p>
  19. {% include 'taglist.html' %}
  20. </footer><!-- /.post-info -->