2020-12-23 15:20:35 +01:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% from "macros/multisection.html" import render_section %}
|
|
|
|
{% block body %}
|
|
|
|
{% for child in this.children %}
|
|
|
|
{% if child._model == 'section' %}
|
|
|
|
<section class="content {{ loop.cycle('-odd', '-even') }} -columns">
|
2021-02-01 21:35:06 +01:00
|
|
|
<div class="content__box -columns">
|
2021-02-04 21:02:33 +01:00
|
|
|
{{ render_section(child) }}
|
2021-02-01 21:35:06 +01:00
|
|
|
</div>
|
2020-12-23 15:20:35 +01:00
|
|
|
</section>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|