summaryrefslogtreecommitdiff
path: root/layouts/baseof.html
diff options
context:
space:
mode:
authorJoseph Elliott Hand <jhand@hawaii.edu>2026-07-19 21:46:16 -1000
committerJoseph Elliott Hand <jhand@hawaii.edu>2026-07-19 21:56:48 -1000
commit650aef75480b773661e53a751337abef3b2abd47 (patch)
treeae9250fc8a79a6c05298d045f591c2b8b540238b /layouts/baseof.html
downloadjosephhand.space-650aef75480b773661e53a751337abef3b2abd47.tar.gz
Initial commit
Signed-off-by: Joseph Elliott Hand <jhand@hawaii.edu>
Diffstat (limited to 'layouts/baseof.html')
-rw-r--r--layouts/baseof.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/baseof.html b/layouts/baseof.html
new file mode 100644
index 0000000..281a59c
--- /dev/null
+++ b/layouts/baseof.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.Language }}">
+<body>
+{{ partial "head.html" . }}
+{{ partial "header.html" . }}
+<main>
+{{ block "main" . -}}
+{{- .Content -}}
+{{ end }}
+{{ partial "footer.html" . }}
+</main>
+</body>
+</html>