aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/translations.html
blob: 121ff1a8ed2dfda17c485772ced20a01f52864df (plain)
1
2
3
4
5
6
7
8
9
10
{% macro translations_for(article) %}
{% if article.translations %}
<details class="meta">
Traductions :
{% for translation in article.translations %}
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
</details> 
{% endif %}
{% endmacro %}