aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
diff options
context:
space:
mode:
authorZach Berwaldt <zberwaldt@tutamail.com>2023-01-30 22:16:34 -0500
committerZach Berwaldt <zberwaldt@tutamail.com>2023-01-30 22:16:34 -0500
commit0e39b5cd5bd26d408355e01d46c356d093befe1c (patch)
treee613c63b16897b0bd7c48c26abd985c4ebdd78ad /layouts/_default/baseof.html
first commit
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..5f8e2ec
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,11 @@
1<!DOCTYPE html>
2<html>
3 {{- partial "head.html" . -}}
4 <body>
5 {{- partial "header.html" . -}}
6 <div id="content">
7 {{- block "main" . }}{{- end }}
8 </div>
9 {{- partial "footer.html" . -}}
10 </body>
11</html>