wires

summary refs log tree commit diff
path: root/layouts/_default/taxonomy.html
blob: 9828f28774c5b6790df94e654c1060b7c6c31925 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{{ define "main" }}
<h1>{{ .Title }}</h1>
<ul>
  {{ range .Pages }}
  <li>
    <a href="{{ .Permalink }}">{{ .Title | lower }}</a>
  </li>
  {{ end }}
</ul>
{{ end }}