2022-12-27 22:34:31 -05:00
|
|
|
<div class="generic-con year-con">
|
|
|
|
{{ range $.Param "years" }}
|
|
|
|
{{ $year := . }}
|
2023-04-03 17:20:42 -04:00
|
|
|
<a class="no-decoration" 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-04-17 16:48:48 -04:00
|
|
|
<img width="256" height="128" title="{{ $year }}" alt="{{ $year }}" class="gallery-img article-img" src="{{ .RelPermalink }}">
|
2022-12-27 22:34:31 -05:00
|
|
|
{{ end }}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|