1
0
Fork 0
forked from github/pelican

Fix translation feature. Add translation support to the notmyidea theme.

This commit is contained in:
Alexis Metaireau 2011-01-05 16:22:52 +01:00
commit 79576f25b6
9 changed files with 33 additions and 40 deletions

View file

@ -0,0 +1,6 @@
{% if article.translations %}
Translations:
{% for translation in article.translations %}
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
{% endif %}