2018-02-25 00:06:19 +01:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block title %}{{ this.title }}{% endblock %}
|
2019-02-12 23:52:50 +01:00
|
|
|
{% block expand_description %}
|
|
|
|
<meta name="description" content="{%
|
|
|
|
if this.teaser %}{{ this.teaser }}{% else %}{%
|
|
|
|
if bag('translate', this.alt, 'description') %}{{ bag('translate', this.alt, 'description') }}{%
|
|
|
|
else %}{{ bag('translate', 'de', 'description') }}{% endif %}
|
|
|
|
{% endif %}" />
|
|
|
|
{% endblock %}
|
2018-02-25 00:06:19 +01:00
|
|
|
{% 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 %}
|