zet.oliverdavies.uk/source/_layouts/zet.html.twig

26 lines
465 B
Twig
Raw Normal View History

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