webseite/templates/page.html
Stephan 0a94a0fba4 Rudimentäre Lektor-Version des WTF-Layouts.
Nur eine Section, nur eine Menüebene.
2020-12-22 14:47:58 +01:00

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 %}