From ecfbed03747be91b5527fd94eebe93525438fc0f Mon Sep 17 00:00:00 2001 From: Ludo Date: Sat, 11 Apr 2026 13:37:52 +0200 Subject: [PATCH] feat: add page content type for site infrastructure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Distinct from articles/essays/notes — pages have no publish lifecycle, no date, no TOC, no prev/next.
landmark, not
. Groundwork: layouts/page/single.html + content/pages/about.md stub. --- content/pages/about.md | 5 +++++ layouts/page/single.html | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 content/pages/about.md create mode 100644 layouts/page/single.html diff --git a/content/pages/about.md b/content/pages/about.md new file mode 100644 index 0000000..4b3edac --- /dev/null +++ b/content/pages/about.md @@ -0,0 +1,5 @@ +--- +title: "About" +description: "What ASW is and who builds it." +type: page +--- diff --git a/layouts/page/single.html b/layouts/page/single.html new file mode 100644 index 0000000..bbd60f4 --- /dev/null +++ b/layouts/page/single.html @@ -0,0 +1,11 @@ +{{ define "header" }}{{ end }} + +{{ define "content" }} +
+
+

{{ .Title }}

+ {{- with .Description }}

{{ . }}

{{ end }} +
+ {{ .Content }} +
+{{ end }}