blob: cd0e9c572fa11f43c6f8886d4df12a647d4d733c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{{ 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 }}
<hr class="end-hr"/>
{{ partial "nav.html" . }}
{{ end }}
|