{{/* Page layout used for art statistics page. */}} {{ define "main" }}

{{ .Title }}


{{ $.Scratch.Set "header-type" "h3" }} {{ $.Scratch.Set "header-name" "Most Drawn Characters" }} {{ partial "fake-heading.html" $ }}
{{ range first 4 (index site.Taxonomies "characters").ByCount }} {{ $year := .Page.Title }} {{ $num := .Count }} {{ $year }}
({{ $num }} artworks)
{{ end }}
{{ $.Scratch.Set "header-name" "# of Artworks by Year" }} {{ partial "fake-heading.html" $ }}
    {{ $years := (where .Site.RegularPages "Section" "=" "art").GroupByDate "2006" }} {{ $year_sorted := slice }} {{ range $years }} {{ $year := .Key }} {{ $num := len (where .Pages "Params.guest" "=" false) }} {{ $year_sorted = $year_sorted | append (dict "year" $year "num" $num) }} {{ end }} {{ range (sort $year_sorted "num" "desc") }}
  1. {{ .year }} ({{ .num }} artworks)
  2. {{ end }}
{{ end }} {{ define "details" }} {{ partial "art-sidebar" . }} {{ end }}