forked from ag_kommunikation/webseite
96bb3550cc
Kanns später aufgebohrt werden, um außer Textwüsten z.B. Kacheln o.ä. anzuzeigen.
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 %}
|