webseite/templates/homepage.html

22 lines
650 B
HTML
Raw Normal View History

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