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

13 lines
570 B
HTML
Raw Normal View History

2024-09-30 17:40:46 -04:00
{{/* Partial used to display a horizontal list of years, each with a clickable link image. */}}
2022-12-27 22:34:31 -05:00
<div class="generic-con year-con">
2024-09-30 17:40:46 -04:00
{{ range (where .Site.RegularPages "Type" "in" "art").GroupByDate "2006" }}
{{ with .Key }}
<a class="no-decoration" href="/art/{{ . }}">
2024-09-30 17:40:46 -04:00
{{ $thumbp := printf "https://images.redstrate.com/year-thumbs/%s.webp" . }}
<img width="256" height="128" title="{{ . }}" alt="A thumbnail of {{ . }}'s art with the text in the center." class="gallery-img article-img" src="{{ $thumbp }}">
2022-12-27 22:34:31 -05:00
</a>
2024-09-30 17:40:46 -04:00
{{ end }}
2022-12-27 22:34:31 -05:00
{{ end }}
</div>