1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-09 11:52:31 +00:00
free_zed.gitlab.io/mytheme/templates/article_infos.html
Freezed b64900d890 Fix month in article Date/Modified
Minute was used instead of month
2019-01-21 20:20:57 +01:00

23 lines
727 B
HTML

<nav class="post-info">
<p>Publié le {{ article.date|strftime('%d/%m/%Y') }}</p>
{% if article.modified %}
<p>Édité le {{ article.modified|strftime('%d/%m/%Y') }}</p>
{% endif %}
{% if article.authors %}
<p>Par :
{% for author in article.authors %}
<a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
{% endfor %}
</p>
{% endif %}
<p>
Dans : <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
</p>
<p>
Tags :
{% include 'taglist.html' %}
</p>
{% import 'translations.html' as translations with context %}
<p>{{ translations.translations_for(article) }}</p>
</nav><!-- /.post-info -->