summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/categories.html
blob: c114f15b6ecf7bb7d340be4d23e71e120226a728 (plain)
1
2
3
4
5
6
7
{{ range $name, $taxonomy := .Site.Taxonomies.category }}
  {{ $cnt := .Count }}
  {{ with $.Site.GetPage (printf "/category/%s" $name) }}
    <a href={{ .RelPermalink }} title="All pages with tag <i>{{$name}}</i>">{{$name}}</a>
    <sup>{{$cnt}}</sup>
  {{end}}
{{ end }}