article_infos.html 485 B

123456789101112131415161718
  1. <footer class="asset-header">
  2. <div class="byline">
  3. By {{ article.author }} on
  4. <abbr class="published" title="{{article.date.isoformat()}}">{{article.locale_date}}</abbr>
  5. </div>
  6. {% if article.tags %}
  7. |
  8. tags: {% for tag in article.tags %}
  9. <a href="/{{ tag.url }}">{{ tag }}</a>
  10. {% endfor %}
  11. {% endif %}
  12. {% import 'translations.html' as translations with context %}
  13. {{ translations.translations_for(article) }}
  14. </footer><!-- /.post-info -->