23 lines
728 B
HTML
23 lines
728 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
{% 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 %}
|
|
{% block body %}
|
|
<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>
|
|
{% endblock %}
|