summaryrefslogtreecommitdiffstats
path: root/templates/translation-links.html
blob: 6694c9648e17c1533c1d7493dd50d9aa17a2cc6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% set numtrans = translations | length %}
{% if numtrans > 0 %}
<span class="translations">
	{% for l in translations %}
		{% if l.lang != lang %}
		{{ trans(key="read_in", lang=l.lang) }}
		<a href="{{ l.permalink | safe }}">{{ trans(key=l.lang) }}</a>
		{% endif %}
	{% endfor %}
</span>
{% endif %}