2019-04-16 17:10:29 +02:00
|
|
|
<footer class="post-info">
|
|
|
|
{% if article.author %}
|
|
|
|
<address class="vcard author">
|
2019-04-30 10:07:06 +02:00
|
|
|
autore: <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
|
2019-04-16 17:10:29 +02:00
|
|
|
</address>
|
|
|
|
{% endif %}
|
|
|
|
|
2019-04-30 10:07:06 +02:00
|
|
|
data inserimento: {{ article.date.strftime('%d %B %Y') }}
|
2019-04-16 17:10:29 +02:00
|
|
|
|
|
|
|
<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>
|