From 650aef75480b773661e53a751337abef3b2abd47 Mon Sep 17 00:00:00 2001 From: Joseph Elliott Hand Date: Sun, 19 Jul 2026 21:46:16 -1000 Subject: Initial commit Signed-off-by: Joseph Elliott Hand --- layouts/_partials/footer.html | 11 +++++++++++ layouts/_partials/head.html | 9 +++++++++ layouts/_partials/header.html | 7 +++++++ 3 files changed, 27 insertions(+) create mode 100644 layouts/_partials/footer.html create mode 100644 layouts/_partials/head.html create mode 100644 layouts/_partials/header.html (limited to 'layouts/_partials') diff --git a/layouts/_partials/footer.html b/layouts/_partials/footer.html new file mode 100644 index 0000000..cdda1ac --- /dev/null +++ b/layouts/_partials/footer.html @@ -0,0 +1,11 @@ +
+
+ +

Back to top.

+ +

This website was built using Hugo and a custom minimal theme.

+ +

This website contains no JavaScript.

+ +

This work is licensed under CC BY-SA 4.0

+
diff --git a/layouts/_partials/head.html b/layouts/_partials/head.html new file mode 100644 index 0000000..54d333a --- /dev/null +++ b/layouts/_partials/head.html @@ -0,0 +1,9 @@ + + {{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }} + + + + + + + diff --git a/layouts/_partials/header.html b/layouts/_partials/header.html new file mode 100644 index 0000000..762a4bc --- /dev/null +++ b/layouts/_partials/header.html @@ -0,0 +1,7 @@ +
+ {{ .Site.Title }} +
+ {{ range .Site.Menus.nav }} + {{ .Name }}
+ {{ end }} +
-- cgit v1.2.3