webseite/templates/page.html
2019-02-12 23:52:50 +01:00

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