blob: 1026cd05ffbcc70bd6cd407d86d98bfb9e4ef5ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{% extends "base.html" %}
{% block title %}{{ page.title }} - {{ config.title }}{% endblock title %}
{% block content -%}
<main>
<h1>{{ page.title }}</h1>
<p class="date">
<time datetime="{{ page.date | date(format="%+") }}">
{{- page.date | date(format="%B %m, %Y") -}}
</time>
{%- if page.updated %}
•
updated <time datetime="{{ page.updated | date(format="%+") }}">
{{- page.updated | date(format="%B %m, %Y") -}}
</time>
{%- endif %}
</p>
{{ page.content | safe -}}
</main>
<hr>
<p>
<b><a href="/">↑ back home</a></b>
</p>
{%- endblock content %}
|