forked from ag_kommunikation/webseite
0a94a0fba4
Nur eine Section, nur eine Menüebene.
11 lines
312 B
HTML
11 lines
312 B
HTML
{% extends "layout.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>
|
|
{% endblock %}
|