aboutsummaryrefslogtreecommitdiffstats
path: root/theme/templates/translations.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/translations.html')
-rw-r--r--theme/templates/translations.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/theme/templates/translations.html b/theme/templates/translations.html
new file mode 100644
index 0000000..db8c372
--- /dev/null
+++ b/theme/templates/translations.html
@@ -0,0 +1,9 @@
+{% macro translations_for(article) %}
+{% if article.translations %}
+Translations:
+{% for translation in article.translations %}
+<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
+{% endfor %}
+{% endif %}
+{% endmacro %}
+