redstrate.com/themes/red/layouts/partials/art-years.html

11 lines
475 B
HTML
Raw Normal View History

2022-12-27 22:34:31 -05:00
<div class="generic-con year-con">
{{ $years := .Param "years" | sort | collections.Reverse }}
{{ range $years }}
2022-12-27 22:34:31 -05:00
{{ $year := . }}
<a class="no-decoration" href="/art/{{ . }}">
{{ $thumbp := printf "https://images.redstrate.com/year-thumbs/%d.webp" . }}
<img width="256" height="128" title="{{ $year }}" alt="A thumbnail of {{ $year }}'s art with the text in the center." class="gallery-img article-img" src="{{ $thumbp }}">
2022-12-27 22:34:31 -05:00
</a>
{{ end }}
</div>