article_infos.html 731 B

12345678910111213141516
  1. <footer class="post-info">
  2. <abbr class="published" title="{{ article.date.isoformat() }}">
  3. {{ article.locale_date }}
  4. </abbr>
  5. {% if article.author %}
  6. <address class="vcard author">
  7. By <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
  8. </address>
  9. {% endif %}
  10. <p>In <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>. {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">get the pdf</a>{% endif %}</p>
  11. {% include 'taglist.html' %}
  12. {% import 'translations.html' as translations with context %}
  13. {{ translations.translations_for(article) }}
  14. </footer><!-- /.post-info -->