16 lines
352 B
Twig
16 lines
352 B
Twig
---
|
|
layout: page
|
|
title: Zettelkasten for Oliver Davies (opdavies)
|
|
use: [notes]
|
|
---
|
|
|
|
<ul class="list-disc pl-4">
|
|
{% for note in data.notes %}
|
|
<li>
|
|
<a class="text-primary underline focus-visible:no-underline hover:no-underline" href="{{ note.url }}">
|
|
{{- note.date|date }}: {{ note.title -}}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|