diff --git a/themes/bootstrap3/templates/includes/translations.html b/themes/bootstrap3/templates/includes/translations.html
new file mode 100644
index 0000000000000000000000000000000000000000..2d7921776e5451c621bd9f6bd70fea0cd076897c
--- /dev/null
+++ b/themes/bootstrap3/templates/includes/translations.html
@@ -0,0 +1,8 @@
+{% macro translations_for(article) %}
+{% if article.translations %}
+{{ _('Lang') }}
+{% for translation in article.translations %}
+ {{ translation.lang }}
+{% endfor %}
+{% endif %}
+{% endmacro %}