sito-hackit-16/themes/skeleton/templates/translations.html

9 lines
257 B
HTML
Raw Normal View History

2015-03-13 12:58:31 +01: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 %}