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

github.com/EmielH/hallo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiel Hollander <EmielH@users.noreply.github.com>2018-10-28 16:12:32 +0300
committerEmiel Hollander <EmielH@users.noreply.github.com>2018-10-28 16:12:32 +0300
commit3bfa83334855d04218f4df61001088c23646b1f4 (patch)
tree20ec37525dadec13939ffd78baf2dfe747c5a3a9 /layouts/_default
Initial commit
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/baseof.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..ab3dc99
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode | default "en" }}">
+ {{- partial "head.html" . -}}
+ <body>
+ {{- partial "header.html" . -}}
+ {{- block "main" . }}{{- end }}
+ {{- partial "footer.html" . -}}
+ </body>
+</html>