forked from ag_kommunikation/webseite
17 lines
379 B
HTML
17 lines
379 B
HTML
{% extends "header.html" %}
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
{% block body %}
|
|
<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 %}
|