aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/layouts/_default/baseof.html')
-rw-r--r--themes/default/layouts/_default/baseof.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/themes/default/layouts/_default/baseof.html b/themes/default/layouts/_default/baseof.html
new file mode 100644
index 0000000..01b6ea0
--- /dev/null
+++ b/themes/default/layouts/_default/baseof.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>
+ {{- block "title" . -}}{{- end -}}
+ {{- partial "site-title.html" . -}}
+ </title>
+ <meta name="description" content="{{- partial "site-description.html" . -}}">
+ {{- partial "head.html" . -}}
+ {{- block "styles" . -}}{{- end -}}
+ </head>
+ <body>
+ <skip-link>
+ <a href="#main">Skip to main content</a>
+ </skip-link>
+
+ <column-left>
+ {{- partial "navigator-left.html" . -}}
+ </column-left>
+
+ <column-middle>
+ <main id="main">
+ {{- block "middle" . -}}{{- end -}}
+ {{- partial "footer.html" . -}}
+ </main>
+ </column-middle>
+
+ <column-right>
+ {{- block "right" . -}}{{- end -}}
+ </column-right>
+ </body>
+</html>