redstrate.com/themes/red/layouts/partials/art-years.html
2022-12-27 22:34:31 -05:00

12 lines
384 B
HTML

<h3>Years</h3>
<div class="generic-con year-con">
{{ range $.Param "years" }}
{{ $year := . }}
<a href="/art/{{ . }}">
{{ $thumbp := printf "/year-thumbs/%s.webp" . }}
{{ with resources.Get $thumbp }}
<img width="512" height="256" alt="{{ $year }}" class="gallery-img article-img" src="{{ .RelPermalink }}">
{{ end }}
</a>
{{ end }}
</div>