aboutsummaryrefslogtreecommitdiff
path: root/layouts/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/baseof.html')
-rw-r--r--layouts/baseof.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/layouts/baseof.html b/layouts/baseof.html
new file mode 100644
index 0000000..39dcbec
--- /dev/null
+++ b/layouts/baseof.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html lang="{{ site.Language.LanguageCode }}" dir="{{ or site.Language.LanguageDirection `ltr` }}">
+<head>
+ {{ partial "head.html" . }}
+</head>
+<body>
+ <header>
+ {{ partial "header.html" . }}
+ </header>
+ <main>
+ {{ block "main" . }}{{ end }}
+ </main>
+ <footer>
+ {{ partial "footer.html" . }}
+ </footer>
+</body>
+</html>