aboutsummaryrefslogtreecommitdiff
path: root/layouts/post/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/post/single.html')
-rw-r--r--layouts/post/single.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/layouts/post/single.html b/layouts/post/single.html
index 166ecd6..25bfc23 100644
--- a/layouts/post/single.html
+++ b/layouts/post/single.html
@@ -1,10 +1,13 @@
1{{ define "main" }} 1{{ define "main" }}
2 {{ if not .Params.dontDisclaim }}
3 {{ partial "disclaimer" . }}
4 {{ end }}
2 <hgroup> 5 <hgroup>
3 <h1>{{ .Title }}</h1> 6 <h1>{{ .Title }}</h1>
4 <h6>{{ .Date | time.Format ":date_full" }}</h6> 7 <h6>{{ .Date | time.Format ":date_full" }}</h6>
8 <h6>{{ .Lastmod | time.Format ":date_full" }}</h6>
5 </hgroup> 9 </hgroup>
6 <section class="content"> 10 <section class="content">
7 {{- .Content -}} 11 {{- .Content -}}
8 </section> 12 </section>
9</article>
10{{ end }} 13{{ end }}