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

github.com/rhnvrm/bodhi.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..6e78e08
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+
+<html>
+
+ <head>
+ {{ partial "header.html" . }}
+ </head>
+
+ <body>
+ {{ partial "head.html" . }}
+ {{ partial "menu.html" . }}
+ <div id="content">
+ {{ partial "nav.html" . }}
+ <div id="main">
+ {{- block "main" . }}{{- end }}
+ {{ partial "footer.html" . }}
+ </div>
+ {{- block "footerfiles" . }}{{- end }}
+
+ {{ if and .Site.Params.fathomAnalytics .Site.Params.fathomAnalytics.siteID }}
+ {{- partial "fathom" . -}}
+ {{ end }}
+ </body>
+
+</html>