summaryrefslogtreecommitdiffstats
path: root/examples/blog/layouts/_default/single.html
diff options
context:
space:
mode:
authorWilliam McGann <contact@WilliamMcGann.com>2014-04-12 16:04:17 -0400
committerspf13 <steve.francia@gmail.com>2014-04-26 23:05:41 -0600
commit96b6ae81eb48cd250c507e6c200a16b91a054eb7 (patch)
treef749ebd5963991144e9a8890b2f640e5c35f5fa6 /examples/blog/layouts/_default/single.html
parentb52e94638122061d3045605d9bf81f8c15e02752 (diff)
Adding example blog
Diffstat (limited to 'examples/blog/layouts/_default/single.html')
-rw-r--r--examples/blog/layouts/_default/single.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/blog/layouts/_default/single.html b/examples/blog/layouts/_default/single.html
new file mode 100644
index 000000000..29679d5af
--- /dev/null
+++ b/examples/blog/layouts/_default/single.html
@@ -0,0 +1,21 @@
+{{ template "chrome/header.html" . }}
+<body>
+{{ template "chrome/navbar.html" . }}
+<div class="container">
+ <div class="row">
+ <div class="col-md-9">
+ <div class="well well-sm">
+ <h3>{{ .Title }}<br> <small>{{ .Description }}</small></h3>
+ <hr>
+ {{ .Content }}
+ </div>
+ </div>
+
+ <!-- Sidebar -->
+ <div class="col-md-3">
+ {{ template "chrome/menu.html" . }}
+ </div>
+ </div>
+{{ template "chrome/footer.copyright.html" . }}
+</div>
+{{ template "chrome/footer.html" . }} \ No newline at end of file