summaryrefslogtreecommitdiff
path: root/layouts/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/baseof.html')
-rw-r--r--layouts/baseof.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/baseof.html b/layouts/baseof.html
new file mode 100644
index 0000000..281a59c
--- /dev/null
+++ b/layouts/baseof.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.Language }}">
+<body>
+{{ partial "head.html" . }}
+{{ partial "header.html" . }}
+<main>
+{{ block "main" . -}}
+{{- .Content -}}
+{{ end }}
+{{ partial "footer.html" . }}
+</main>
+</body>
+</html>