{% for p in pages %}
{% if p.title == 'header' %}
{{ p.content }}
{% endif %}
{% endfor %}
{% for p in pages %}
{% if p.title == 'colophon' %}
{{ p.content }}
{% endif %}
{% endfor %}
Since the last update of the website, the streambot collected the following logs:
{% for p in pages %}
{% if p.title == 'stream' %}
{{ p.content }}
{% endif %}
{% endfor %}
{% set glob={} %}
{% if DEFAULT_LANG == 'nl' %}
{% set _ = glob.update({'published_at': 'Gepubliceerd op '}) %}
{% set _ = glob.update({'related_to': ' gerelateerd aan '}) %}
{% set _ = glob.update({'written_by': 'Geschreven door '}) %}
{% set _ = glob.update({'read_more': 'lees meer '}) %}
{% endif %}
{% if DEFAULT_LANG == 'en' %}
{% set _ = glob.update({'published_at': 'Published at '}) %}
{% set _ = glob.update({'related_to': ' relating to '}) %}
{% set _ = glob.update({'written_by': 'Written by '}) %}
{% set _ = glob.update({'read_more': 'read more'}) %}
{% endif %}
{% block content_title %}
{% endblock %}
{% if articles_page.has_other_pages() %}
{% include 'pagination.html' %}
{% endif %}
{% for article in articles_page.object_list %}
{% if loop.index < 6 %}
{% set thumb_size = '/thumb' %}
{% 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' %}
{% 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 %}
{{ article.category }}
{% endif %}
{% if article.tags %}
{{ glob.related_to }}
{% for tag in article.tags %}
{{ tag }}
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
{% endblock content %}