From a8c618bf564a89641c742127a2a4b9d636dea6e9 Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Tue, 20 Mar 2018 22:44:39 +0100 Subject: [PATCH] beginning of the end, we introduced javascript (FIXME FOR ROEL) --- themes/varia/templates/article.html | 41 ++++++++++++++++++++++------- 1 file changed, 31 insertions(+), 10 deletions(-) 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 %}
{% 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 %}