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

github.com/kc0bfv/ticky_tacky_dark.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.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..ead1c49
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode }}">
+ <head>{{- partial "head.html" . -}}</head>
+ <body>
+ <div id="header" class="top-section">
+ {{- partial "body_header.html" . -}}
+ </div>
+ <div id="content" class="top-section">
+ <div class="container-fluid">
+ <div class="row">
+ <div class="col col-12 col-sm-8 col-lg-9">
+ <div class="row">
+ {{- block "main" . }}{{- end }}
+ </div>
+ </div>
+ <div class="col col-8 offset-2 col-sm-4 offset-sm-0 col-lg-3">
+ {{- partial "navbar" . -}}
+ </div>
+ </div>
+ </div>
+ </div>
+ <div id="footer" class="top-section">
+ {{- partial "body_footer.html" . -}}
+ </div>
+ {{- partial "foot.html" . -}}
+ </body>
+</html>