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

30 lines
855 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 %}
{% from 'includes/featured_image.html' import fi %}
{% set i = page.featured_image[0] %}
{{ fi(i.pic, i.link, i.text, i.credit) }}
{% endif %}
{{ page.content }}
</div>
{% endblock content_body %}
{% block content_footer %}
{% if page.footer_line is defined %}
<p class="muted">{{ page.footer_line }}</p>
{% elif page.footer_include is defined %}
{% include page.footer_include %}
{% endif %}
{% endblock content_footer %}