aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: a8257e95a3dfafdc7c2bef24d91da730e5d2a6bd (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
<article>
	<h1>{{ .Title }}</h1>
	<p class="meta">
		{{ if gt .Date.Unix 0 }}
		<time datetime="{{ .Date.Format "2006-01-02T15:04:05-07:00" }}">{{ .Date.Format "January 2, 2006" }}</time>
		{{ end }}
	</p>
	{{ .Content }}
</article>
{{ end }}