aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..9343abd
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,13 @@
+{{ define "main" }}
+<article class="ph2">
+ <header class="bg-green pa5">
+ <h1 class="f1 black-90">
+ {{ .Title }}</h1>
+
+ <div class="gray tracked">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
+ </header>
+ <div class="f5 lh-copy pv4 ph2 black-80">
+ {{ .Content }}
+ </div>
+</article>
+{{ end }}