diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2023-05-13 22:39:58 -0400 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2023-05-13 22:39:58 -0400 |
commit | b34e09f8fe1011963934dbf40dc92f0b258592ca (patch) | |
tree | c99974d127163b266f107d5c9c5e1f126a233087 /layouts/_default/baseof.html | |
parent | 24e058c3eb3a278023c4ecee7efa9a73774ded0b (diff) |
more layout work
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 5f8e2ec..6ed81b9 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html | |||
@@ -1,10 +1,14 @@ | |||
1 | <!DOCTYPE html> | 1 | <!DOCTYPE html> |
2 | <html> | 2 | <html lang="en" data-theme="dark"> |
3 | {{- partial "head.html" . -}} | 3 | {{- partial "head.html" . -}} |
4 | <body> | 4 | <body> |
5 | {{- partial "header.html" . -}} | 5 | {{- partial "header.html" . -}} |
6 | <div id="content"> | 6 | <div |
7 | {{- block "main" . }}{{- end }} | 7 | class='container' |
8 | id="content" | ||
9 | > | ||
10 | {{- block "main" . }} | ||
11 | {{- end }} | ||
8 | </div> | 12 | </div> |
9 | {{- partial "footer.html" . -}} | 13 | {{- partial "footer.html" . -}} |
10 | </body> | 14 | </body> |