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.
11 lines
212 B
HTML
11 lines
212 B
HTML
{{ define "header" }}{{ end }}
|
|
|
|
{{ define "content" }}
|
|
<main>
|
|
<header>
|
|
<h1>{{ .Title }}</h1>
|
|
{{- with .Description }}<p>{{ . }}</p>{{ end }}
|
|
</header>
|
|
{{ .Content }}
|
|
</main>
|
|
{{ end }}
|