blog/themes/pelican-striped-html5up/templates/translations.html

10 lines
243 B
HTML
Raw Normal View History

2021-11-08 22:46:35 +00:00
{% macro translations_for(article) %}
{% if article.translations %}
Translations:
{% for translation in article.translations %}
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
{% endif %}
{% endmacro %}