blob: 33360b43a8c1dd9616c3864e3f607d58c11040f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{{ define "head"}}
{{ partial "css.html" "res/css/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="words">{{ .WordCount }} words</span>
{{ if ne .Lastmod .Date }}
<span class="last-updated">Last updated: {{ partial "date.html" .Lastmod }}</span>
{{ end}}
</p>
{{ .Content }}
{{ end }}
{{ define "footer" }}
{{ partial "nav.html" . }}
{{ end }}
|