webseite/templates/page.html

17 lines
377 B
HTML
Raw Normal View History

2018-02-25 00:06:19 +01:00
{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
2019-02-12 17:45:44 +01:00
<div id="main" class="wrapper style1">
<div class="container">
<header class="major">
<h2>{{ this.title }}</h2>
<p>{{ this.slogan }}</p>
</header>
<!-- Content -->
<section id="content">
{{ this.content }}
</section>
</div>
</div>
2018-02-25 00:06:19 +01:00
{% endblock %}