summaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
diff options
context:
space:
mode:
authorMark Powers <mark@marks.kitchen>2024-10-24 08:14:08 -0500
committerMark Powers <mark@marks.kitchen>2024-10-24 08:14:08 -0500
commit511cbfbafde4ff463751fadf8dd15d3b7eb41cea (patch)
tree6d89005ca5c8d83481cb794581887f5943175192 /layouts/_default/baseof.html
parent4a7862b0f1c7cec898bfa08114819a74690d4962 (diff)
Refactor theme usage
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..5dc4b24
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html lang="en">
+ {{- partial "head.html" . -}}
+ <body>
+ {{- partial "header.html" . -}}
+ {{- block "main" . }}{{- end }}
+ {{- partial "footer.html" . -}}
+ </body>
+</html>