{{- range $name, $taxonomy := site.Taxonomies }} {{- $limit := 10 }} {{- $count := true }} {{- $idx := 0 }}
{{- with site.GetPage $name }}
{{- .Title -}}
{{- end }} {{- range $termName, $term := $taxonomy.ByCount }} {{- if eq $idx $limit }} {{- break }} {{- end }} {{- $term.Page.Title -}} {{- if $count }} {{- printf " (%d)" $term.Count -}} {{- end }} {{- $idx = add $idx 1 }} {{- end }}
{{- end }}