29 lines
827 B
HTML
29 lines
827 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ page.title }} - {{ SITENAME }}{% endblock %}
|
|
{% block metadesc %}{% if page.summary %}{{ page.summary|e }}{% else %}{{ super() }}{% endif
|
|
%}{% endblock %}
|
|
|
|
{% block content_header %}
|
|
<header id="main-header">
|
|
<h1>{{ page.title }}</h1>
|
|
</header>
|
|
{% endblock content_header %}
|
|
|
|
{% block content_body %}
|
|
<div id="page-body">
|
|
{% if page.featured_image is defined %}
|
|
<div class="featured-image">
|
|
<a href="{{ page.featured_image }}" title="{{ page.title }} (Bild)">
|
|
<img src="{{ page.featured_image }}" alt="{{ page.title }} (Bild)" />
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
{{ page.content }}
|
|
</div>
|
|
{% endblock content_body %}
|
|
|
|
{% block content_footer %}
|
|
{% if page.last_line is defined %}
|
|
<p class="muted">{{ page.last_line }}</p>
|
|
{% endif %}
|
|
{% endblock content_footer %} |