redstrate.com/themes/red/layouts/_default/art-stats.html
2024-08-03 10:23:42 -04:00

26 lines
880 B
HTML

{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
{{ $.Scratch.Set "header-type" "h3" }}
{{ $.Scratch.Set "header-name" "Most Drawn Characters" }}
{{ partial "fake-heading.html" $ }}
<ol>
{{ range $.Param "characters" }}
{{ $year := .name }}
{{ $num := .num }}
<a class="character" href="/art/characters/{{ urlize $year }}"><img class="gallery-img" width=256 height=256 src="https://images.redstrate.com/chars/{{ urlize $year }}.jpg"/><span>{{ $year }}<br>({{ $num }} artworks)</span></a>
{{ end }}
</ol>
{{ $.Scratch.Set "header-name" "# of Artworks by Year" }}
{{ partial "fake-heading.html" $ }}
<ol>
{{ range $.Param "years" }}
{{ $year := .year }}
{{ $num := .num }}
<li><a href="/art/{{ $year }}">{{ $year }}</a> ({{ $num }} artworks)</li>
{{ end }}
</ol>
{{ end }}