blob: 698be33a4b6db78975e6c7a85904d606540102ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{{ define "main" }}
<article>
<header id="post-header">
<h1>{{ .Title }}</h1>
<div>
{{- if isset .Params "date" -}}
{{ if eq .Lastmod .Date }}
<time>{{ .Date.Format "Monday 2 Jan, 2006" }}</time>
{{ else }}
Updated <time>{{ .Lastmod.Format "Monday 2 Jan, 2006" }}</time>
{{ end }}
{{- end -}}
</div>
</header>
This is a {{ .Kind }}.
{{- .Content -}}
</article>
{{ end }}
|