diff options
Diffstat (limited to 'layouts/shortcodes')
-rw-r--r-- | layouts/shortcodes/categories.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/layouts/shortcodes/categories.html b/layouts/shortcodes/categories.html new file mode 100644 index 0000000..c114f15 --- /dev/null +++ b/layouts/shortcodes/categories.html @@ -0,0 +1,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 }} |