aboutsummaryrefslogtreecommitdiff
path: root/layouts/blog/single.html
blob: 58c2ba5d35865a56ecb4b7f26c0ad667d1f6c55c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "head_extras" }}
	{{ partial "ld/post.html" . }}
{{ end }}

{{ 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 }}