A theme for pelican which mimics the look of LaTeX documents
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- {% macro translations_for(article) %}
- {% if article.translations %}
- Translations:
- {% for translation in article.translations %}
- <a href="{{ SITEURL }}/{{ translation.url }}" hreflang="{{ translation.lang }}">{{ translation.lang }}</a>
- {% endfor %}
- {% 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 %}
|