blob: 6cb47c33a566fde6b5b0ebf9b8d5bb7586557c7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "default.html" %}
{% block content %}
<article>
<header>
<h1>{{ page.title }}</h1>
</header>
{{ page.content }}
<footer>{% if page.tags %}
<ul class="taglist">
<li>Tags:</li>{% for tag in page.tags %}
<li><a href="{{ '/tag/' + tag + '.html' }}">{{ tag }}</a></li>{% endfor %}
</ul>{% endif %}
<time>{{ page.date|datefmt }}</time>
</footer>
</article>
{% endblock %}
|