t-r.de/theme/templates/page.html

22 lines
555 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>
{{ 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 %}