aboutsummaryrefslogtreecommitdiff
path: root/themes/simple/layouts/_default/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/simple/layouts/_default/baseof.html')
-rw-r--r--themes/simple/layouts/_default/baseof.html19
1 files changed, 11 insertions, 8 deletions
diff --git a/themes/simple/layouts/_default/baseof.html b/themes/simple/layouts/_default/baseof.html
index 5f8e2ec..781b043 100644
--- a/themes/simple/layouts/_default/baseof.html
+++ b/themes/simple/layouts/_default/baseof.html
@@ -1,11 +1,14 @@
1<!DOCTYPE html> 1<!DOCTYPE html>
2<html> 2<html>
3 {{- partial "head.html" . -}} 3
4 <body> 4{{ partial "head.html" . }}
5 {{- partial "header.html" . -}} 5
6 <div id="content"> 6<body>
7 {{- block "main" . }}{{- end }} 7 {{ partial "header.html" . }}
8 </div> 8 <div id="content">
9 {{- partial "footer.html" . -}} 9 {{ block "main" . }}{{ end }}
10 </body> 10 </div>
11 {{ partial "footer.html" . }}
12</body>
13
11</html> 14</html>