8 lines
210 B
Text
8 lines
210 B
Text
{% macro translations_for(article) %}
|
|
{% if article.translations %}
|
|
{% for translation in article.translations %}
|
|
`[{{ translation.lang }}`:/page/{{ translation.url }}]
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endmacro %}
|
|
|