feat: complete swap over to a far simpler static, zola site

This commit is contained in:
Lewis Wynne 2026-04-29 01:22:21 +01:00
parent 227f560c0d
commit d76cb9cf77
62 changed files with 717 additions and 5028 deletions

8
templates/page.html Normal file
View file

@ -0,0 +1,8 @@
{% extends "base.html" %}
{% block title %}{{ page.title }} — {{ config.title }}{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
{{ page.content | safe }}
{% endblock %}