Initial commit

Migrated from Astro.
This commit is contained in:
Oliver Davies 2025-03-01 22:15:39 +00:00
commit a62acb33c3
14 changed files with 3739 additions and 0 deletions

16
source/index.html.twig Normal file
View file

@ -0,0 +1,16 @@
---
layout: base
use:
- examples
---
<ul>
{% for example in data.examples %}
<li>
<a href="{{ example.url }}">
{{ example.title }}
</a>
</li>
{% endfor %}
</ul>