{{ define "main" }} {{ .Scratch.Set "scope" "list" }} {{ if .Site.Params.taxonomy.showHero | default false }} {{ $heroStyle := print "partials/hero/" .Site.Params.taxonomy.heroStyle ".html" }} {{ if templates.Exists $heroStyle }} {{ partial $heroStyle . }} {{ else }} {{ partial "partials/hero/basic.html" . }} {{ end }} {{- end -}} {{ $toc := and (.Params.showTableOfContents | default (.Site.Params.taxonomy.showTableOfContents | default false)) (in .TableOfContents " {{ if .Params.showBreadcrumbs | default (.Site.Params.taxonomy.showBreadcrumbs | default false) }} {{ partial "breadcrumbs.html" . }} {{ end }}

{{ .Title }}

{{ partial "article-meta-taxonomy.html" (dict "context" . "scope" "single") }}
{{ if .Content }}
{{ .Content | emojify }}
{{ end }} {{ $jsPage := resources.Get "js/page.js" }} {{ $jsPage = $jsPage | resources.Minify | resources.Fingerprint "sha512" }}
{{ range .Data.Terms }}

{{ .Page.Title }} {{ if $.Site.Params.taxonomy.showTermCount | default true }} · {{ .Count }} {{ end }}

{{ end }}
{{ end }}