您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

8 行
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 %}