blob: 83297cff713b9e0d4215969afccdb2318ec956ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{ define "head"}}
{{ partial "css.html" "single.css" }}
{{ end }}
{{ define "title" }}
{{ .Title }}
{{ end }}
{{ define "content" }}
{{ partial "nav.html" . }}
<h1 class="post-title">{{ .Title }}</h1>
<hr/>
<p class="post-info"><span class="created">{{ partial "date.html" .Date }}</span> <span class="last-updated">Last updated: {{ partial "date.html" .Lastmod }}</span></p>
{{ .Content }}
<hr class="end-hr"/>
{{ partial "nav.html" . }}
{{ end }}
|