webseite/templates/page.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 %}