riq0h.jp/themes/qiss/layouts/partials/taxonomies_count.html

13 lines
383 B
HTML
Raw Normal View History

2023-08-21 10:07:01 +09:00
{{if .Site.Params.Info.taxonomiesCount}}
{{ $title := urlize .Title }}
{{ range $taxonomy_name, $taxonomy := .Site.Taxonomies }}
{{ if eq $.Section $taxonomy_name}}
{{ range $key, $value := $taxonomy }}
{{ $term := urlize $key }}
{{ if eq $title $term }}
({{ $value.Count }})
{{ end }}
{{ end }}
{{ end }}
{{ end }}
{{ end }}