28 lines
775 B
HTML
28 lines
775 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.last_line is defined %}
|
|
<p class="muted">{{ page.last_line }}</p>
|
|
{% endif %}
|
|
{% endblock content_footer %} |