Files
pelican-latex/templates/translations.html
T
haemka 0faae602fa Added multilingual and theme switching support, fixed multiple
positioning issues, added articles to sidebar
2026-08-14 16:53:30 +00:00

18 lines
553 B
HTML

{% macro translations_for(article) %}
{% if article.translations %}
<div id="translations">
{% for translation in article.translations %}
<a href="{{ SITEURL }}/{{ translation.url }}" hreflang="{{ translation.lang }}">{{ translation.lang }}</a>
{% endfor %}
</div>
{% endif %}
{% endmacro %}
{% macro entry_hreflang(entry) %}
{% if entry.translations %}
{% for translation in entry.translations %}
<link rel="alternate" hreflang="{{ translation.lang }}" href="{{ SITEURL }}/{{ translation.url }}">
{% endfor %}
{% endif %}
{% endmacro %}