wires

summary refs log tree commit diff
path: root/layouts/_default/term.html
blob: 35ef1de85b62c6f76ef70382135a5789f5c7f892 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}
<h1>{{ .Title }}</h1>
<ul>
  {{ range .Pages }}
  <li>
    <a href="{{ .Permalink }}">{{ .Title }}</a>
    <time datetime="{{ .Lastmod }}">
      {{ .Lastmod.Format "January 2, 2006" }}
    </time>
  </li>
  {{ end }}
</ul>
{{ end }}