wires

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