blob: 099d3fc76cfdf9a5771b77edf8b177a3ad35f6a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{ define "main" }}
<div id="publishing">
<span>{{ .PublishDate | time.Format ":date_long" }}</span>
{{ if and (isset .Params "lastmod") (ne .Lastmod .PublishDate) }}
<br>
<span>Revised: {{ .Lastmod | time.Format ":date_long" }}</span>
{{ end }}
{{ if isset .Params "tags" }}
<br>
<span>Tags:</span>
{{- range sort .Params.tags }}
<a href="/tags/{{ . }}">{{ . | humanize | title }}</a>
{{- end }}
{{ end }}
</div>
{{ .Content }}
{{ end }}
|