blog/themes/pelican-striped-html5up/templates/translations.html
Marc Beninca 3b5262ab5e themes
2021-11-08 23:46:35 +01:00

9 lines
243 B
HTML

{% macro translations_for(article) %}
{% if article.translations %}
Translations:
{% for translation in article.translations %}
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
{% endif %}
{% endmacro %}