Website/theme/templates/article_infos.html

12 lines
342 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="info">
<abbr class="published" title="{{ article.date.isoformat() }}">
Publié le {{ article.date|strftime('%d/%m/%Y') }}
</abbr>
{% if article.authors %}
<address class="vcard author">
Par {% for author in article.authors %}{{ author }}{% endfor %}
</address>
{% endif %}
</div>