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