article_infos.html 925 B

1234567891011121314151617181920212223
  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. <a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
  15. {% endfor %}
  16. </address>
  17. {% endif %}
  18. <p>In <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>.</p>
  19. {% include 'taglist.html' %}
  20. {% import 'translations.html' as translations with context %}
  21. {{ translations.translations_for(article) }}
  22. </footer><!-- /.post-info -->