aboutsummaryrefslogtreecommitdiff
path: root/layouts/baseof.html
diff options
context:
space:
mode:
authorericmarin <maarin.eric@gmail.com>2026-04-20 14:06:38 +0200
committerericmarin <maarin.eric@gmail.com>2026-04-21 12:24:41 +0200
commitd29af7ee395555e628ee0f3def31c748394cc93b (patch)
tree001c5420dfcc1262d2a5be3980d12e9eb9994933 /layouts/baseof.html
parent061585b540bae3c29a6c5b96c4616401cc7d5ed9 (diff)
downloadwww.ericmarin.dev-d29af7ee395555e628ee0f3def31c748394cc93b.tar.gz
www.ericmarin.dev-d29af7ee395555e628ee0f3def31c748394cc93b.zip
hugo!
Diffstat (limited to '')
-rw-r--r--layouts/baseof.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layouts/baseof.html b/layouts/baseof.html
new file mode 100644
index 0000000..48c3d32
--- /dev/null
+++ b/layouts/baseof.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html lang="{{ site.Language.Locale }}" dir="{{ or site.Language.Direction `ltr` }}">
+ <head>
+ {{ partial "head.html" . }}
+ </head>
+ <body>
+ <header>
+ {{ partial "header.html" . }}
+ </header>
+
+ <main>
+ {{ block "main" . }}{{ end }}
+ </main>
+
+ <footer>
+ {{ partial "footer.html" . }}
+ </footer>
+ </body>
+</html>