blob: 21b247db8885444b5dcc9df61463ce365dd62e21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{{ 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 }}
{{ .Content }}
{{ end }}
|