blob: b8263e0e2122131e54e6568397cbbe4ecae50c61 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock title %}
{% block content %}
<h1 class="title">
{{ page.title }}
</h1>
<p class="subtitle">{{ page.date | date(format="%-d %b %Y") }}</p>
<hr>
{{ page.content | safe }}
<hr> <a href="../">Go back</a>
{% endblock content %}
|