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

13 lines
604 B
HTML
Raw Permalink 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 }}
2024-10-16 09:39:25 -04:00
<a class="no-decoration" href="{{ printf "%sart/%s" $.Site.Home.Permalink . }}">
2024-10-12 14:59:49 -04:00
{{ $thumbp := printf "%s/year-thumbs/%s.webp" $.Site.Params.image_host . }}
2024-09-30 17:40:46 -04:00
<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>