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

github.com/ijsucceed/onepress.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.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..7cf9586
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode | default "en" }}">
+ <head>
+ {{ partial "head.html" . }}
+ </head>
+<body>
+ <header class="header">
+ {{ partial "brand.html" . }}
+ </header>
+ <nav class="main-nav">
+ {{ partial "nav.html" . }}
+ </nav>
+ <div id="site-wrapper">
+ <main>
+ {{ block "main" . }} {{ end }}
+ </main>
+ <aside class="desktop-only">
+ {{ block "widgets" . }}{{ end }}
+ {{ partial "footer.html" . }}
+ </aside>
+ {{ partial "footer.html" . }}
+ </div>
+
+ {{ partial "js.html" . }}
+</body>
+</html>