26 lines
653 B
HTML
26 lines
653 B
HTML
|
<footer class="post-info">
|
||
|
{% if article.author %}
|
||
|
<address class="vcard author">
|
||
|
autore: <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
|
||
|
</address>
|
||
|
{% endif %}
|
||
|
|
||
|
data inserimento: {{ 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>
|