zet.oliverdavies.uk/source/index.html.twig

16 lines
352 B
Twig
Raw Normal View History

2024-08-21 11:00:00 +00:00
---
layout: page
title: Zettelkasten for Oliver Davies (opdavies)
use: [notes]
---
<ul class="list-disc pl-4">
2024-08-21 11:00:00 +00:00
{% for note in data.notes %}
<li>
<a class="text-primary underline focus-visible:no-underline hover:no-underline" href="{{ note.url }}">
2024-08-22 20:28:13 +00:00
{{- note.date|date }}: {{ note.title -}}
2024-08-21 11:00:00 +00:00
</a>
</li>
{% endfor %}
</ul>