flux.vision/web/mc-pelican/templates/translations.html

9 lines
248 B
HTML
Raw Normal View History

2023-07-01 11:01:17 +03:00
{% macro translations_for(article) %}
{% if article.translations %}
{% for translation in article.translations %}
<a class="translation" href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
{% endif %}
{% endmacro %}