summaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
diff options
context:
space:
mode:
authormjkwiatkowski <mati.rewa@gmail.com>2026-02-11 13:07:32 +0100
committermjkwiatkowski <mati.rewa@gmail.com>2026-02-11 13:07:32 +0100
commit8a5c074fce30a855f11a70a8f4d200382985cc51 (patch)
treeb1a9f1f2f24eacac1981fac2172c5d915dbb6d9a /layouts/_default/baseof.html
parent1ffc59a9975679dfb43f3b8e12649b76efa51f4b (diff)
fix: added the _default again
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..11f8e65
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="{{ site.Language.LanguageCode }}">
+<head>
+ {{ partial "head.html" . }}
+</head>
+<body>
+ <header>
+ {{ partial "header.html" . }}
+ </header>
+
+ <main>
+ {{ block "main" . }}
+ {{ end }}
+ </main>
+
+ <footer>
+ {{ partial "footer.html" . }}
+ </footer>
+</body>
+</html>