2024-08-21 12:00:00 +01:00
|
|
|
{% extends "base" %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<nav>
|
|
|
|
<a href="/">Home</a>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
{{ parent() }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content_wrapper %}
|
2024-09-10 09:59:24 +01:00
|
|
|
<time date="{{ page.date|date('c') }}">{{ page.date|date }}</time>
|
|
|
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
2024-09-14 16:57:43 +01:00
|
|
|
{% include "zets/links" with { links: page.links } %}
|
2024-09-14 14:08:27 +01:00
|
|
|
|
2024-09-14 16:57:43 +01:00
|
|
|
{% include "zets/related" with {
|
|
|
|
zets: data.zets,
|
2024-09-14 14:08:27 +01:00
|
|
|
related: page.related,
|
|
|
|
} %}
|
|
|
|
|
2024-09-14 16:57:43 +01:00
|
|
|
{% include "zets/tags" with { tags: page.tags } %}
|
2024-09-14 14:08:27 +01:00
|
|
|
|
2024-08-21 12:00:00 +01:00
|
|
|
{% endblock %}
|