2024-08-21 11:00:00 +00:00
|
|
|
{% extends "base" %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<nav>
|
|
|
|
<a href="/">Home</a>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
{{ parent() }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content_wrapper %}
|
2024-08-22 20:26:48 +00:00
|
|
|
{{ page.date|date }}
|
|
|
|
|
2024-08-21 11:00:00 +00:00
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
|
|
|
{% if page.tags is not empty %}
|
|
|
|
<h2>Tags</h2>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% for tag in page.tags|sort %}
|
|
|
|
<li>{{ tag }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|