Initial commit

This commit is contained in:
Oliver Davies 2024-08-21 12:00:00 +01:00
commit ccd13c62a2
18 changed files with 3795 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{% extends "base" %}
{% block body %}
<nav>
<a href="/">Home</a>
</nav>
{{ parent() }}
{% endblock %}
{% block content_wrapper %}
{% 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 %}