minimo/templates/article_infos.html

26 lines
635 B
HTML
Raw Normal View History

2019-03-16 03:42:59 +01:00
<footer class="post-info">
{% if article.author %}
<address class="vcard author">
2019-03-16 04:00:20 +01:00
<a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
2019-03-16 03:42:59 +01:00
</address>
{% endif %}
data: {{ article.date.strftime('%d %B %Y') }}
<br>
categoria: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
<br>
{% if article.tags %}
tag: {% for tag in article.tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
{% endfor %}
{% endif %}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}
</footer>