diff options
Diffstat (limited to 'theme/cccevents/templates/translations.html')
-rw-r--r-- | theme/cccevents/templates/translations.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/theme/cccevents/templates/translations.html b/theme/cccevents/templates/translations.html new file mode 100644 index 0000000..5864095 --- /dev/null +++ b/theme/cccevents/templates/translations.html | |||
@@ -0,0 +1,8 @@ | |||
1 | {% macro translations_for(article) %} | ||
2 | {% if article.translations %} | ||
3 | <!--<li role="presentation" class="active"><a href="#">{{ DEFAULT_LANG }}</a></li>--> | ||
4 | {% for translation in article.translations %} | ||
5 | <li class="page_item page-item-181"><a href="{{ SITEURL }}/{{ translation.url }}"><img src="{{ SITEURL}}/theme/images/{{ translation.lang }}.png"></a></li> | ||
6 | {% endfor %} | ||
7 | {% endif %} | ||
8 | {% endmacro %} | ||