diff --git a/themes/varia/templates/article.html b/themes/varia/templates/article.html index c7e8dd2d4c..15791f00a7 100644 --- a/themes/varia/templates/article.html +++ b/themes/varia/templates/article.html @@ -27,18 +27,20 @@
{% if article.event_start %} -
{{ article.event_start }}
+
{{ article.event_start }}
+ {% else %} +
Published: {{ article.date }}
{% endif %}
@@ -53,15 +55,23 @@
{% endif %} {% if article.translations %} -
+ {% for translation in article.translations %} {% if translation.lang == 'nl' %}Lees dit artikel in het Nederlands {% endif %} {% if translation.lang == 'en' %}Read this article in English {% endif %} {% endfor %} -
+ {% endif %} + {% if article.tags %} + + relating to {% for tag in article.tags %} + + + {% endfor %} + + {% endif %}
@@ -71,4 +81,15 @@
+ {% endblock %}