summaryrefslogtreecommitdiffstats
path: root/themes/problematic/layouts/_default/taxonomy.html
blob: f59c372bc6fce4c1f0dac14474fba497ed768e0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
  <div class="container">
    <h1>All {{ .Type }}</h1>
    <ul>
      {{ range .Pages }}
        <li>
          <a href="{{ .Permalink }}">{{ .Title }}</a>
        </li>
      {{ end }}
    </ul>
  </div>
{{ end }}