A theme for pelican which mimics the look of LaTeX documents
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- {% 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 %}
|