Rename notes to zets

This commit is contained in:
Oliver Davies 2024-09-14 16:57:43 +01:00
parent e70d8c6f1f
commit 6d4667887d
35 changed files with 57 additions and 33 deletions

View file

@ -0,0 +1,25 @@
{% 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 %}
{% include "zets/links" with { links: page.links } %}
{% include "zets/related" with {
zets: data.zets,
related: page.related,
} %}
{% include "zets/tags" with { tags: page.tags } %}
{% endblock %}