2021-02-16 21:32:56 +01:00
|
|
|
{% extends "header_with_logo.html" %}
|
2021-02-04 21:02:33 +01:00
|
|
|
{% block body %}
|
|
|
|
<div class="content__box">
|
2021-02-21 11:37:22 +01:00
|
|
|
<div class="content__inner_box -logo_header">
|
2021-02-04 21:02:33 +01:00
|
|
|
<h1>{{ this.title }}</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-02-14 23:48:56 +01:00
|
|
|
|
|
|
|
{% for blk in this.section.blocks %}
|
2021-02-21 17:02:36 +01:00
|
|
|
<section class="content {{ loop.cycle('-odd', '-even') }}">
|
2021-02-21 14:47:31 +01:00
|
|
|
{% if blk.title %}
|
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box">
|
|
|
|
<h2>{{ blk.title }}</h2><hr>
|
2021-02-04 21:02:33 +01:00
|
|
|
</div>
|
2021-02-21 14:47:31 +01:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{{ blk }}
|
|
|
|
</section>
|
2021-02-04 21:02:33 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|