forked from boyska/sito-hackit-17
8 lines
273 B
HTML
8 lines
273 B
HTML
|
{% 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 %}
|