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

20 lines
527 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">
<hgroup>
<h1>{{ page.title }}</h1>
<p>{{ page.summary }}</p>
</hgroup>
</header>
{% endblock content_header %}
{% block content_body %}
<article>{{ page.content }}</article>
{% endblock content_body %}
{% block content_footer %}
{% endblock content_footer %}