1{% extends "base.html" %}
2
3{% block content %}
4<h1 class="title">{{ page.title }}</h1>
5<div class="time">
6 <p>{{ page.date }}</p>
7 {% if page.updated and page.updated != page.date %}<p>last updated {{ page.updated }}</p>{% endif %}
8</div>
9{{ page.content | safe }}
10{% endblock %}