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

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html17
1 files changed, 13 insertions, 4 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index aafa2b4..d1d97fa 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,6 +1,15 @@
-{{ partial "header.html" . }}
+{{ define "main" }}
- <h1>{{ title .Title }}</h1>
- {{ .Content }}
+<div class="row">
+ <div class="col-md-12">
+ <h1>{{ title .Title }}</h1>
+ </div>
+</div>
-{{ partial "footer.html" . }}
+<div class="row">
+ <div class="col-md-12">
+ {{ .Content }}
+ </div>
+</div>
+
+{{ end }}