article_infos.html 625 B

1234567891011121314151617
  1. <footer class="post-info">
  2. <div class="published" title="{{ article.date.isoformat() }}">
  3. Published: <time>{{ article.locale_date }}</time>
  4. </div>
  5. {% if article.modified %}
  6. <br />
  7. <abbr class="modified" title="{{ article.modified.isoformat() }}">
  8. Updated: {{ article.locale_modified }}
  9. </abbr>
  10. {% endif %}
  11. {#
  12. <p>In <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>.</p>
  13. #}
  14. {% import 'translations.html' as translations with context %}
  15. {{ translations.translations_for(article) }}
  16. </footer><!-- /.post-info -->