{% extends "public/content.html" %} {% load thumbnail %} {% load resource_extras %} {% block meta_description %}{{ page.introduction }}{% endblock %} {% block headtitle %}{{ page.title }}{% endblock %} {% block headscript %} {% endblock %} {% block left_content %} {% if top_level_page.get_subpages %} {% endif %} {% endblock %} {% block title %}

{{ page.title }}

{% endblock %} {% block content %}
{% if page.introduction %}
{% if page.introduction_image %}
{{ page.introduction|linebreaks }}
{{ page.title }}
{% else %} {{ page.introduction|linebreaks }} {% endif %}
{% endif %} {% if page.intro_page and page.get_blocks %}
{% for block in page.get_blocks %}
{{ block }}

{{ block }}

{{ block.content|linebreaksbr }}

{% endfor %}
{% endif %} {{ page.content|safe }} {% if sections %}

Contents

    {% for section in sections %} {% if section.is_title %}

{{ section }}

    {% else %}
  1. {{ section }}
  2. {% endif %} {% endfor %}
{% for section in sections %} {% if section.is_title %}

{{ section }}

{{ section.content|safe }}
{% else %}

{{ section }}

{{ section.content|safe }}
{% endif %} {% if section|get_resources:request %}
{% for resource in section|get_resources:request %} {% if resource.resource.category.template %} {% include resource.resource.category.template with resource=resource.resource %} {% else %} {% include "public/resources/default.html" with resource=resource.resource %} {% endif %} {% endfor %}
{% endif %}

Back to top

{% endfor %}
{% endif %} {% if resources %}
{% for resource in resources %} {% if resource.resource.category.template %} {% include resource.resource.category.template with resource=resource.resource %} {% else %} {% include "public/resources/default.html" with resource=resource.resource %} {% endif %} {% endfor %}
{% endif %}
{% endblock %}