aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_zf/templates/article_infos_bottom.html
blob: dd0c8a20e3b24c43a2742a2cd90a9a1ceae37ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<p class="subheader">Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>

{% if article.tags %}
    Tagged: 
    {% for tag in article.tags %}
    <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }} </a>
    {% endfor %}
{% endif %}
</p>

{% if PDF_PROCESSOR %}<p><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">PDF</a></p>{% endif %}

{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}