Ordentliche H1 zum im Page-Layout hinzugefügt.

This commit is contained in:
Stephan 2021-02-06 15:08:59 +01:00
parent d0471403b2
commit 0a574e98d8
1 changed files with 13 additions and 7 deletions

View File

@ -1,10 +1,16 @@
{% extends "layout.html" %}
{% extends "header.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
<section class="content -odd -columns">
<div class="content__wrapper -columns">
<h2>{{ this.title }}</h2>
{{ this.body }}
</div>
</section>
<section class="content -odd -columns">
<div class="content__box">
<div class="content__inner_box">
<h1>{{ this.title }}</h1>
</div>
</div>
<div class="content__box">
<div class="content__inner_box">
{{ this.body }}
</div>
</div>
</section>
{% endblock %}