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,24 @@
<!DOCTYPE html>
<html lang="{{ site.locale|default('en') }}">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ site.name|default('Sculpin Skeleton') }}</title>
</head>
<body>
{% block body %}
<h1>{% block page_title %}{{ page.title }}{% endblock %}</h1>
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
<hr />
<footer>
<p>This website is open source. <a class="underline hover:no-underline" href="{{ site.github.url }}/edit/main/source/{{ page.relative_pathname }}">Improve this page</a>.</p>
</footer>
{% endblock %}
</body>
</html>

View file

@ -13,13 +13,13 @@
{% block content %}{% endblock %}
{% include "notes/links" with { links: page.links } %}
{% include "zets/links" with { links: page.links } %}
{% include "notes/related" with {
notes: data.notes,
{% include "zets/related" with {
zets: data.zets,
related: page.related,
} %}
{% include "notes/tags" with { tags: page.tags } %}
{% include "zets/tags" with { tags: page.tags } %}
{% endblock %}