commit 5984ed372d0ddab855cb46382fd3250b68d56387
parent 49fcd607a059dd7b08ca1bb9131371c4a54c7304
author: nathanael <nathanael@dalliard.ch>
date: Mon, 20 Oct 2025 06:27:01 +0000
add log
diffstat:
5 files changed, 27 insertions(+), 1 deletion(-)
diff --git a/config/_default/config.toml b/config/_default/config.toml
@@ -1,3 +1,6 @@
baseURL = 'https://dalliard.ch/'
disableHugoGeneratorInject = true
disableKinds = ['taxonomy', 'rss']
+
+[frontmatter]
+date = [":filename", ":default"]
diff --git a/content/_index.md b/content/_index.md
@@ -13,4 +13,4 @@ thinking for myself
[openbsd](o)
computing with trust
-[mail](c) [pgp](p)
+[log](l) [mail](c) [pgp](p)
diff --git a/content/log/2025-10-20.md b/content/log/2025-10-20.md
@@ -0,0 +1,7 @@
+---
+title: 2025-10-20
+url: l/1
+---
+first log entry. the idea is to subscribe to this with a feed reader. i will add occasional entries to keep you informed about new pages, edits and other relevant updates to the website. if you just want to know what i'm doing now, checkout my [/now](/n) page
+
+*(working on the feed itself right now while you were reading this - stay tuned)*
diff --git a/content/log/_index.md b/content/log/_index.md
@@ -0,0 +1,9 @@
+---
+title: log
+url: l
+aliases:
+- log
+outputs:
+- html
+- rss
+---
diff --git a/layouts/section.html b/layouts/section.html
@@ -0,0 +1,7 @@
+{{ define "main" }}
+<h1>{{ .Title }}</h1>
+{{ .Content }}
+{{ range .Pages }}
+<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+{{ end }}
+{{ end }}