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

github.com/bul-ikana/hugo-cards.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.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..c1ff15f
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+
+ {{ partial "head.html" }}
+
+ <body>
+
+ {{ partial "header.html" . }}
+
+ <div class="container">
+ <div class="wrapper">
+ {{ block "main" . }} {{ end }}
+ </div>
+ </div>
+
+ {{ partial "footer.html" . }}
+
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
+ <script src="{{ .Site.BaseURL }}/js/bootstrap.min.js"></script>
+ {{ with .Site.Params.analytics }}
+ {{ partial "analytics.html" . }}
+ {{ end }}
+ </body>
+
+</html> \ No newline at end of file