{% 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 %}
{% endif %}
{% if article.category == 'article' %}
{% set thumb_size = '/thumb2x' %}
{% endif %}
{% endif %}
{{ article.title }}
{% if article.event_start %}
{{ article.event_start | strftime('%d %B %Y') }}
{% else %}
{% endif %}
{{ article.summary }}
{% if DEFAULT_LANG == 'en' %}
{{ glob.read_more }}
{% elif DEFAULT_LANG == 'nl' %}
{{ glob.read_more }}
{% endif %}
{% if article.category %}
{% if DEFAULT_LANG == 'en' %}
{{ article.category }}
{% elif DEFAULT_LANG == 'nl' %}
{{ article.category }}
{% endif %}
{% endif %}
{% if article.tags %}
{{ glob.related_to }}
{% for tag in article.tags %}
{% if DEFAULT_LANG == 'en' %}
{{ tag }}
{% elif DEFAULT_LANG == 'nl' %}
{{ tag }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% if articles_page.has_other_pages() %}
{% include 'pagination.html' %}
{% endif %}