forked from ag_kommunikation/webseite
12 lines
385 B
HTML
12 lines
385 B
HTML
|
{% 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">
|
||
|
{{ render_section(child) }}
|
||
|
</section>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|