aboutsummaryrefslogtreecommitdiff
path: root/layouts/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/baseof.html')
-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>