blob: 7894bb07194c57c3debc2559d2948db79963020a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
{% macro translations_for(article) %}
{% if article.translations %}
Translations:
{% for translation in article.translations %}
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
{% endif %}
{% endmacro %}
|