aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_zf/templates/translations.html
blob: ca03a2c94986bac80e5a299326c5cbecdf1051c5 (plain)
1
2
3
4
5
6
7
8
{% macro translations_for(article) %}
{% if article.translations %}
Translations: 
    {% for translation in article.translations %}
        <a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
    {% endfor %}
{% endif %}
{% endmacro %}