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

26 lines
435 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>
2024-08-22 20:26:48 +00:00
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 %}