content: Add dedicated site for collecting random notes

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2023-10-17 23:52:44 +02:00
parent b11dc64f02
commit 8a3e84ab73
Signed by: c8h4
GPG key ID: 73D5E7FDEE3DE49A
2 changed files with 15 additions and 0 deletions

8
content/notes.md Normal file
View file

@ -0,0 +1,8 @@
---
title: random notes
date: 2023-10-17T23:24:02+02:00
---
a random collection of useful notes collected over the years.
{{< pagelist >}}

View file

@ -0,0 +1,7 @@
{{ $pages := where .Site.RegularPages "Title" "!=" "random notes" }}
<ul>
{{ range sort $pages "Title" "asc" }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
{{ end }}
</ul>