From a51c9890d2b9720297c72b646c894a11474e8532 Mon Sep 17 00:00:00 2001 From: Hunter Kvalevog Date: Mon, 29 Jun 2026 23:15:12 -0500 Subject: --- layouts/.page.html.swp | Bin 0 -> 12288 bytes layouts/baseof.html | 7 +++++++ layouts/home.html | 2 ++ layouts/page.html | 10 ++++++++++ layouts/section.html | 11 +++++++++++ layouts/taxonomy.html | 7 +++++++ 6 files changed, 37 insertions(+) create mode 100644 layouts/.page.html.swp create mode 100644 layouts/baseof.html create mode 100644 layouts/home.html create mode 100644 layouts/page.html create mode 100644 layouts/section.html create mode 100644 layouts/taxonomy.html (limited to 'layouts') diff --git a/layouts/.page.html.swp b/layouts/.page.html.swp new file mode 100644 index 0000000..78731f4 Binary files /dev/null and b/layouts/.page.html.swp differ diff --git a/layouts/baseof.html b/layouts/baseof.html new file mode 100644 index 0000000..9b5c08e --- /dev/null +++ b/layouts/baseof.html @@ -0,0 +1,7 @@ + + + + +
{{ block "main" . }}{{ end }}
+ + diff --git a/layouts/home.html b/layouts/home.html new file mode 100644 index 0000000..e4e4a83 --- /dev/null +++ b/layouts/home.html @@ -0,0 +1,2 @@ +{{ define "main" }} +{{ end }} diff --git a/layouts/page.html b/layouts/page.html new file mode 100644 index 0000000..540938f --- /dev/null +++ b/layouts/page.html @@ -0,0 +1,10 @@ +{{ define "main" }} +

{{ .Title }}

+ + {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} + {{ $dateHuman := .Date | time.Format ":date_long" }} + + + {{ .Content }} +{{ end }} + diff --git a/layouts/section.html b/layouts/section.html new file mode 100644 index 0000000..0b95945 --- /dev/null +++ b/layouts/section.html @@ -0,0 +1,11 @@ +{{ define "main" }} + {{ .Content }} + + {{ range .Pages }} + + + + {{ end }} +
{{ .LinkTitle }}
+{{ end }} + diff --git a/layouts/taxonomy.html b/layouts/taxonomy.html new file mode 100644 index 0000000..c2e7875 --- /dev/null +++ b/layouts/taxonomy.html @@ -0,0 +1,7 @@ +{{ define "main" }} +

{{ .Title }}

+ {{ .Content }} + {{ range .Pages }} +

{{ .LinkTitle }}

+ {{ end }} +{{ end }} -- cgit v1.2.3