9 lines
248 B
HTML
9 lines
248 B
HTML
|
|
{% macro translations_for(article) %}
|
||
|
|
{% if article.translations %}
|
||
|
|
{% for translation in article.translations %}
|
||
|
|
<a class="translation" href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
|
||
|
|
{% endfor %}
|
||
|
|
{% endif %}
|
||
|
|
{% endmacro %}
|
||
|
|
|