Re-add a temporary /blog page

This commit is contained in:
Oliver Davies 2025-08-20 23:16:30 +01:00
parent a2132616d5
commit 1c4506bd4b

View file

@ -0,0 +1,11 @@
---
title: Blog
use: [posts]
draft: true
---
<ul>
{% for post in data.posts %}
<li><a href="{{ post.url|trim('/', 'right') }}">{{ post.title }}</a></li>
{% endfor %}
</ul>