Files @ 84384760959a
Branch filter:

Location: AENC/cwi-pelican-template-fork/themes/cwi/templates/translations.html

ccw
Fix hyperlink.
1
2
3
4
5
6
7
8
{% macro translations_for(article) %}
{% if article.translations %}
Translations:
    {% for translation in article.translations %}
        <a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
    {% endfor %}
{% endif %}
{% endmacro %}