blob: c5fdbc23f6828b816e935d85e1d1f10d20ce96fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{{ define "main" -}}
<div class="post">
<h1>{{ .Title }}</h1>
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
{{ .Content }}
</div>
{{ if .Site.Params.disqusShortname -}}
<h2>Comments</h2>
{{- end }}
{{- end }}
|