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

15
templates/index.html Normal file
View file

@ -0,0 +1,15 @@
{% extends "base.html" %}
{% block title %}{{ config.title }}{% endblock %}
{% block content %}
<p>
She looked herself in the mirror and plunged the pen drive into her neck and felt the weight of sapience lift from her shoulders, and then the high wore off.
</p>
{% set blog = get_section(path="blog/_index.md") %}
{% for post in blog.pages %}
{{ post.date }}&emsp;<a href="{{ post.permalink }}">{{ post.title }}</a><br>
{% endfor %}
{% endblock %}