{% for article in articles_page.object_list %}
{% set thumb_size = '/thumb' %}
{% if article.category %}
{% if article.event_start %}
{% set event_status = '' %}
{% 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 %}
{% if article.category == 'article' %}
{% set thumb_size = '/thumb2x' %}
{% endif %}
{% endif %}
{% endif %}
{{ article.title }}
{% if article.event_start %}
{{ article.event_start | strftime('%d %B %Y') }}
{% else %}
{% endif %}
{{ article.summary }}
{% if DEFAULT_LANG == 'en' %}
read more
{% elif DEFAULT_LANG == 'nl' %}
lees meer
{% endif %}
{% if article.category %}
{{ article.category }}
{% endif %}
{% if article.tags %}
relating to {% for tag in article.tags %}
{{ tag }}
{% endfor %}
{% endif %}
{% endfor %}