blob: 7405a3f9108971882e812b95f5fed91bd1c9a0de (
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
|
{% extends "index.html" %}
{% block title %}{{ page.title }} · {{ config.title }}{% endblock title %}
{% block header %}
<header>
<a href="/"><img id="logofloat" src="{{ config.extra.logo | safe }}" /></a>
</header>
{% endblock header %}
{% block content %}
<article>
<h1>{{ page.title }}</h1>
<span class="single-date">{{ page.date | date(format="%B %e, %Y") }}</span>
{% if page.updated | date %}
<br>
<span class="single-date"><small>Last modified {{ page.updated | date(format="%B %e, %Y") }}</small></span>
{% endif %}
{{ page.content | safe }}
</article>
{% endblock content %}
|