Rename notes to zets
This commit is contained in:
parent
e70d8c6f1f
commit
6d4667887d
35 changed files with 57 additions and 33 deletions
|
@ -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>
|
|
@ -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 %}
|
Loading…
Add table
Add a link
Reference in a new issue