2021-02-06 15:13:13 +01:00
|
|
|
{% extends "header.html" %}
|
2021-02-04 21:02:33 +01:00
|
|
|
{% block body %}
|
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box">
|
|
|
|
<h1>{{ this.title }}</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-02-14 23:48:56 +01:00
|
|
|
|
|
|
|
{% for blk in this.section.blocks %}
|
2021-02-14 21:24:29 +01:00
|
|
|
<section class="content {{ loop.cycle('-odd', '-even') }} -columns">
|
2021-02-14 23:48:56 +01:00
|
|
|
{% if blk.title %}
|
2021-02-04 21:02:33 +01:00
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box">
|
2021-02-14 23:48:56 +01:00
|
|
|
<h2>{{ blk.title }}</h2><hr>
|
2021-02-04 21:02:33 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2021-02-14 23:48:56 +01:00
|
|
|
{{ blk }}
|
2021-02-04 21:02:33 +01:00
|
|
|
</section>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|