2017-08-19 01:32:26 +02:00
|
|
|
{% extends "cofcms/base.html" %}
|
2021-06-26 22:52:23 +02:00
|
|
|
{% load wagtailcore_tags wagtailimages_tags cofcms_tags %}
|
2017-08-19 01:32:26 +02:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<section class="intro">
|
|
|
|
<h1>{{ page.title }}</h1>
|
2021-06-26 22:52:23 +02:00
|
|
|
<div>{{ page.introduction|richtext }}</div>
|
2017-08-19 01:32:26 +02:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="pagecontent">
|
|
|
|
{% for block in page.body %}
|
|
|
|
{% if block.block_type == "heading" %}
|
|
|
|
<h2>{{ block.value }}</h2>
|
2018-03-21 21:50:57 +01:00
|
|
|
{% elif block.block_type == "paragraph" %}
|
2017-08-19 01:32:26 +02:00
|
|
|
<article class="paragraph">
|
2021-06-26 22:52:23 +02:00
|
|
|
{{ block.value|richtext }}
|
2017-08-19 01:32:26 +02:00
|
|
|
</article>
|
2018-03-21 21:50:57 +01:00
|
|
|
{% elif block.block_type == "image" %}
|
2018-01-28 19:09:56 +01:00
|
|
|
<div class="image">
|
|
|
|
{% image block.value width-800 %}
|
|
|
|
</div>
|
2018-03-21 21:50:57 +01:00
|
|
|
{% elif block.block_type == "iframe" %}
|
|
|
|
<article class="paragraph">
|
|
|
|
<iframe src="{{ block.value.url }}" width="100%" height="{{ block.value.height }}px"></iframe>
|
|
|
|
</article>
|
|
|
|
{% endif %}
|
2017-08-19 01:32:26 +02:00
|
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
{% endblock %}
|