11 lines
461 B
HTML
11 lines
461 B
HTML
<div class="generic-con year-con">
|
|
{{ range $.Param "years" }}
|
|
{{ $year := . }}
|
|
<a class="no-decoration" href="/art/{{ . }}">
|
|
{{ $thumbp := printf "/year-thumbs/%d.webp" . }}
|
|
{{ with resources.Get $thumbp }}
|
|
<img width="256" height="128" title="{{ $year }}" alt="A thumbnail of {{ $year }}'s art with the text in the center." class="gallery-img article-img" src="{{ .RelPermalink }}">
|
|
{{ end }}
|
|
</a>
|
|
{{ end }}
|
|
</div>
|