blob: ca03a2c94986bac80e5a299326c5cbecdf1051c5 (
plain) (
tree)
|
|
{% macro translations_for(article) %}
{% if article.translations %}
Translations:
{% for translation in article.translations %}
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
{% endif %}
{% endmacro %}
|