summaryrefslogtreecommitdiffstats
path: root/layouts/categories/list.html
blob: 8336025c3717fd131fce96e2b45a155b8661fbbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }}

<main>
  <div>
    <h2>{{ .Title }}</h2>
    <ul>
    {{ range .Pages.ByTitle }}
        <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
    {{ end }}
    </ul>
  </div>
</main>

{{ end }}