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

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

{{ end }}