{% include "parts/header.html" %}

{{page.title}}

{% if user.is_superuser %}[edit page {{page.id}}]{% endif %}

{{page.summary}}

Inhoudsopgave

    {% for paragraph in page.paragraphs.all %}
  1. {{paragraph.header}} {% if paragraph.data_lists %} {% for dl in paragraph.data_lists.all %}
      {% for dt in dl.data_titles.all %}
    • {{dt.text}}
    • {% endfor %}
    {% endfor %} {% endif %}
  2. {% endfor %}
{% for paragraph in page.paragraphs.all %}

{{paragraph.header}}

{% if user.is_superuser %}[edit p {{paragraph.id}}]{% endif %}

{{paragraph.text|linebreaks}} {% for options in paragraph.options.all %} {% if options.images %} {% for image in options.images.all %} {% include 'parts/dom-image.html' %} {% endfor %} {% endif %} {% if options.data_lists %} {% for dl in options.data_lists.all %} {% include 'parts/dom-datalist.html' %} {% endfor %} {% endif %} {% if options.lists %} {% for l in options.lists.all %} {% include 'parts/dom-list.html' %} {% endfor %} {% endif %} {% if options.relative_links %} {% for r in options.relative_links.all %} {% include 'parts/dom-relativelink.html' %} {% endfor %} {% endif %}

{% endfor %} {% endfor %}