blob: 354384d274936cd36abf0ed5aeeb1b3f127587a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{ define "main" }}
<h1>{{ .Title }}</h1>
<p>
{{ if ne .PublishDate.Year 1 }}{{ .PublishDate.Format "2006-01-02" }} - {{ end }}{{ .Description }}
{{ if (isset .Params "tags") }}{{ if ge (len .Params.tags) 1 }}<br/>Tag{{ if ge (len .Params.tags) 2 }}s{{ end }}: {{ range .Params.tags }}<a href="/tags/{{ . }}">{{ . }}</a> {{ end }}{{ end }}{{ end }}
</p>
{{ partial "toc.html" . }}
{{ .Content }}
{{ end }}
|