nfc-web/web/nfc-theme/templates/translations.html
2023-04-30 14:08:32 +03:00

8 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 %}