26 lines
572 B
HTML
26 lines
572 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block metadata %}
|
|
|
|
<meta name="description" content="{{ page.description }}"/>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>
|
|
{{ page.title }}
|
|
</h2>
|
|
{% if page.date and page.date is defined %}
|
|
<p>
|
|
<em><strong>Published on</strong>: {{ page.date }}</em>
|
|
</p>
|
|
{% endif %}
|
|
{% if page.updated and page.updated != page.date %}
|
|
<p>
|
|
<em><strong>Last updated on</strong>: {{ page.updated }}</em>
|
|
</p>
|
|
{% endif %}
|
|
<div>
|
|
{{ page.content | safe }}
|
|
</div>
|
|
{% endblock content %}
|