about summary refs log tree commit diff stats
path: root/themes/xmin/layouts/_default/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/xmin/layouts/_default/baseof.html')
-rw-r--r--themes/xmin/layouts/_default/baseof.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/themes/xmin/layouts/_default/baseof.html b/themes/xmin/layouts/_default/baseof.html
new file mode 100644
index 0000000..6757396
--- /dev/null
+++ b/themes/xmin/layouts/_default/baseof.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode }}">
+  <head profile="//gmpg.org/xfn/11">
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <title>{{ .Title }} | {{ .Site.Title }}</title>
+    <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" />
+    {{ range .AlternativeOutputFormats -}}
+      {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
+    {{ end -}}
+  </head>
+
+  <body>
+    <nav>
+      <ul>
+        {{ range .Site.Menus.main }}
+        <li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
+        {{ end }}
+      </ul>
+    </nav>
+
+    {{ block "main" . }}
+    {{ end }}
+
+    <footer>
+      {{ with .Site.Params.footer }}
+      {{ . | markdownify }}
+      {{ end }}
+    </footer>
+  </body>
+</html>