2018-04-24 20:39:56 +02:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
|
|
{% block body %}
|
2018-04-24 23:20:20 +02:00
|
|
|
<section class="wrapper alt spotlight style2">
|
|
|
|
<div class="inner">
|
|
|
|
<div class="content">
|
|
|
|
<h2 class="major">{{ this.title }}</h2>
|
|
|
|
{{ this.spruch }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Content -->
|
|
|
|
<div class="wrapper">
|
|
|
|
<div class="inner">
|
|
|
|
<h3 class="major">{{ this.subtitle }}</h3>
|
|
|
|
{{ this.body }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-04-24 20:39:56 +02:00
|
|
|
{% endblock %}
|