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