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