wttf/theme/wttf_v1/templates/translations.html

10 lines
243 B
HTML
Raw Permalink Normal View History

2018-08-28 23:56:03 +02:00
{% macro translations_for(article) %}
{% if article.translations %}
Translations:
{% for translation in article.translations %}
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
{% endif %}
{% endmacro %}