Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/st-wong/hugo-spectre-pixel-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..081dbe7
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode | default "en" }}">
+{{ partial "head.html" . }}
+<body onload="setPixelFont()">
+ {{ partial "nav.html" . }}
+ <section class="container grid-md">
+ <div class="columns">
+ {{ block "profile" . }}{{ end }}
+ {{ block "main" . }}{{ end }}
+ {{ partial "footer.html" . }}
+ </div>
+ </section>
+ {{ partial "js.html" . }}
+</body>
+</html>