blob: 25bfc233485eea147b6f57a868669bc67e92d69c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ define "main" }}
{{ if not .Params.dontDisclaim }}
{{ partial "disclaimer" . }}
{{ end }}
<hgroup>
<h1>{{ .Title }}</h1>
<h6>{{ .Date | time.Format ":date_full" }}</h6>
<h6>{{ .Lastmod | time.Format ":date_full" }}</h6>
</hgroup>
<section class="content">
{{- .Content -}}
</section>
{{ end }}
|