blob: d576bf612059e3d1f302561c8de4c8b7a9e61931 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "base.html" %}
{% block content %}
<h2>{{ page.title }}</h2>
<div class="content">
{% if page.date %}
<p>{{ page.date }} {% if page.updated %}(updated on {{ page.updated }}){% endif %}</p>
{% endif %}
{{ page.content | safe }}
</div>
{% endblock content %}
|