summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..0f61d2a
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,19 @@
+{{partial "header.tmpl" .}}
+<div class="row">
+ <header><p>{{.Title}}</p></header>
+</div>
+<div class="container journal">
+ <div class="row">
+ <div class="twelve columns article">
+ <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
+ {{.RawContent | plainify | htmlUnescape}}
+ </div>
+ </div>
+</div>
+<div class="row center">
+ <p class="twelve columns" style="margin-top: 20px">
+ <a class="button" href="../" title="back to index">back to journal</a>
+ </p>
+</div>
+{{partial "footer.tmpl"}}
+