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

16 lines
444 B
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }} - {{ SITENAME }}{% endblock %}
{% block metadesc %}{% if page.summary %}{{ page.summary|e }}{% else %}A Page in {{ SITETAG }}: {{ page.title }}{% endif
%}{% endblock %}
{% block content_header %}
<h1>{{ page.title }}</h1>
{% endblock content_header %}
{% block content_body %}
{{ page.content }}
{% endblock content_body %}
{% block content_footer %}
{% endblock content_footer %}