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

13 lines
384 B
HTML
Raw Normal View History

2022-12-27 22:34:31 -05:00
<h3>Years</h3>
<div class="generic-con year-con">
{{ range $.Param "years" }}
{{ $year := . }}
<a href="/art/{{ . }}">
2023-03-06 21:48:55 -05:00
{{ $thumbp := printf "/year-thumbs/%d.webp" . }}
2022-12-27 22:34:31 -05:00
{{ with resources.Get $thumbp }}
2023-03-28 17:57:05 -04:00
<img width="256" height="128" alt="{{ $year }}" class="gallery-img article-img" src="{{ .RelPermalink }}">
2022-12-27 22:34:31 -05:00
{{ end }}
</a>
{{ end }}
</div>