summaryrefslogtreecommitdiff
path: root/themes/JustZvan/layouts/baseof.html
diff options
context:
space:
mode:
authorJustZvan <justzvan@justzvan.xyz>2026-03-24 20:14:42 +0100
committerJustZvan <justzvan@justzvan.xyz>2026-03-24 20:14:42 +0100
commita60a600522b9c638cf06fc484d80209dfb7d5c20 (patch)
tree9801ae967ac65724333abf15a35d445a05167095 /themes/JustZvan/layouts/baseof.html
feat: initial commit
Diffstat (limited to 'themes/JustZvan/layouts/baseof.html')
-rw-r--r--themes/JustZvan/layouts/baseof.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/themes/JustZvan/layouts/baseof.html b/themes/JustZvan/layouts/baseof.html
new file mode 100644
index 0000000..36ca140
--- /dev/null
+++ b/themes/JustZvan/layouts/baseof.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html lang="{{ site.Language.LanguageCode }}" dir="{{ or site.Language.LanguageDirection `ltr` }}">
+<head>
+ {{ partial "head.html" . }}
+</head>
+<body>
+ {{ if not .IsHome }}
+ <header>
+ {{ partial "header.html" . }}
+ </header>
+ {{ end }}
+ <main>
+ {{ block "main" . }}{{ end }}
+ </main>
+ {{ if not .IsHome }}
+ <footer>
+ {{ partial "footer.html" . }}
+ </footer>
+ {{ end }}
+</body>
+</html>