{% extends "base.html" %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% if article.tags or article.category or article.keywords %} {% endif %} {% endblock %} {% block content %} {% set glob={} %} {% if article.translations %} {% for translation in article.translations %} {% if translation.lang == 'nl' %} {% set _ = glob.update({'published_at': 'Published at '}) %} {% set _ = glob.update({'translate_article': 'Lees dit artikel in het Nederlands'}) %} {% set _ = glob.update({'related_to': ' relating to '}) %} {% set _ = glob.update({'translation_url': translation.url}) %} {% set _ = glob.update({'written_by': 'Written by '}) %} {% endif %} {% if translation.lang == 'en' %} {% set _ = glob.update({'published_at': 'Gepubliceerd op '}) %} {% set _ = glob.update({'translate_article': 'Read this article in English'}) %} {% set _ = glob.update({'related_to': ' gerelateerd aan '}) %} {% set _ = glob.update({'translation_url': translation.url}) %} {% set _ = glob.update({'written_by': 'Geschreven door '}) %} {% endif %} {% endfor %} {% endif %}
{{ article.title }}
{% if article.event_start %}
{{ article.event_start }}
{% endif %}
{{ glob.published_at }} {{ article.date | strftime('%d %B %Y') }}
{{ article.content }}

{% endblock %}