{{ define "main" }}
{{ 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 }}
{{ $jsPage := resources.Get "js/page.js" }} {{ $jsPage = $jsPage | resources.Minify | resources.Fingerprint "sha512" }}
{{ end }}
{{ range .Data.Terms }}

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

{{ end }}
{{ end }}