18 lines
501 B
HTML
18 lines
501 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 %}
|
|
<header id="main-header">
|
|
<h1>{{ page.title }}</h1>
|
|
</header>
|
|
{% endblock content_header %}
|
|
|
|
{% block content_body %}
|
|
<article>{{ page.content }}</article>
|
|
{% endblock content_body %}
|
|
|
|
{% block content_footer %}
|
|
{% endblock content_footer %} |