nfc-web/web/nfc-theme/templates/translations.html

9 lines
248 B
HTML
Raw Permalink Normal View History

2023-04-30 14:08:32 +03:00
{% 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 %}