asw/layouts/page/single.html
Ludo ecfbed0374
feat: add page content type for site infrastructure
Distinct from articles/essays/notes — pages have no publish lifecycle,
no date, no TOC, no prev/next. <main> landmark, not <article>.
Groundwork: layouts/page/single.html + content/pages/about.md stub.
2026-04-11 13:37:52 +02:00

11 lines
212 B
HTML

{{ define "header" }}{{ end }}
{{ define "content" }}
<main>
<header>
<h1>{{ .Title }}</h1>
{{- with .Description }}<p>{{ . }}</p>{{ end }}
</header>
{{ .Content }}
</main>
{{ end }}