summaryrefslogtreecommitdiff
path: root/themes/elenq/templates/translations.html
diff options
context:
space:
mode:
authorEkaitz Zárraga <ekaitz.zarraga@protonmail.com>2018-04-06 12:01:09 +0200
committerEkaitz Zárraga <ekaitz.zarraga@protonmail.com>2018-04-06 12:01:09 +0200
commitfc476ec89f95a8011ae132dfda05d05ff4642d7a (patch)
tree0e807e86757f9555479354a6e26b24cf08370912 /themes/elenq/templates/translations.html
Template V1
Diffstat (limited to 'themes/elenq/templates/translations.html')
-rw-r--r--themes/elenq/templates/translations.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/themes/elenq/templates/translations.html b/themes/elenq/templates/translations.html
new file mode 100644
index 0000000..db8c372
--- /dev/null
+++ b/themes/elenq/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 %}
+