You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
293B

  1. {% macro translations_for(article) %}
  2. {% if article.translations %}
  3. {% for translation in article.translations %}
  4. <a class="button secondary small translation-button" href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
  5. {% endfor %}
  6. {% endif %}
  7. {% endmacro %}