Initial commit

This commit is contained in:
Oliver Davies 2024-08-21 12:00:00 +01:00
commit ccd13c62a2
18 changed files with 3795 additions and 0 deletions

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

@ -0,0 +1,16 @@
---
layout: page
title: Zettelkasten for Oliver Davies (opdavies)
use: [notes]
---
<ul>
{% for note in data.notes %}
<li>
<a href="{{ note.url }}">
{{ note.date|date('c') }}:
{{ note.title }}
</a>
</li>
{% endfor %}
</ul>