blob: 56b9d9d6f05bfb5aa1af4123e84c6055a499efde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ if (eq .Section "posts") }}
{{ with .Param "lastmod" }}
<p>
<em>Last modified {{ . | time.Format "Jan 02 2006" }}.</em>
</p>
{{ end }}
{{ end }}
{{ if or (eq .Section "posts") (.Params.toc) }}
{{ with .TableOfContents }}{{ . }}{{ end }}
{{ end }}
{{ .Content }}
{{ end }}
|