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

21
templates/base.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{{ config.title }}{% endblock %}</title>
<link rel="stylesheet" href="/style.css">
{% if config.generate_feeds %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml">
{% endif %}
</head>
<body>
<nav>
<a href="/">ily [dot] rs</a> |
<a href="/links/">links</a> |
<a href="/now/">now</a> |
sign the <a href="/guestbook/">guestbook</a>
</nav>
{% block content %}{% endblock %}
</body>
</html>