{% extends "base.html" %} {% block content %}
{% block content_title %} {% endblock %} {% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %}
{% for article in articles_page.object_list %} {% if article.category %} {% if article.event_start %} {% set event_status = '' %} {% set thumb_size = '/thumb' %} {% if article.event_start < article.date.now() %} {% set event_status = ' past' %} {% endif %} {% if article.event_start >= article.date.now() %} {% set event_status = ' current' %} {% set thumb_size = '/thumb2x' %} {% endif %} {% endif %}
{% endif %}
{{ article.summary }} {% if DEFAULT_LANG == 'en' %} read more {% elif DEFAULT_LANG == 'nl' %} lees meer {% endif %}

{% endfor %}
{% endblock content %}