oliverdavies.uk/source/_pages/blog.html.twig

12 lines
181 B
Twig
Raw Normal View History

2025-08-20 23:16:30 +01:00
---
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>