aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/translations.html
blob: ea693df98393eaa87dd8df6304c1c3703ecf0bf2 (plain)
1
2
3
4
5
6
7
8
{% macro translations_for(article) %}
{% if article.translations %}
<span class="label label-default">Lang</span>
{% for translation in article.translations %}
	<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
{% endif %}
{% endmacro %}