aboutsummaryrefslogblamecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/translations.html
blob: 2d7921776e5451c621bd9f6bd70fea0cd076897c (plain) (tree)
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 %}