translations.html 351 B

1234567891011
  1. {% macro translations_for(article) %}
  2. {% if article.translations %}
  3. <p id="list-of-translations">
  4. This post is also available in:
  5. {% for translation in article.translations %}
  6. <a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>{%if not loop.last %}, {% else %}.{% endif %}
  7. {% endfor %}
  8. </p>
  9. {% endif %}
  10. {% endmacro %}