erynwells.me/layouts/photos/list.html

13 lines
446 B
HTML
Raw Normal View History

2022-08-27 09:17:42 -07:00
{{ define "main" }}
<section class="photos">
<ul class="grid">
{{ range .Pages }}
{{ $thumbnailResource := (index (.Resources.ByType "image") 0) }}
{{ $thumbnail := $thumbnailResource.Fit "600x600" }}
{{ $thumbnail := $thumbnail.Crop "600x600" }}
<li><a href="{{ .RelPermalink }}" title="{{ .Title }}"><img src="{{ $thumbnail.RelPermalink }}"></a></li>
{{ end }}
</ul>
</section>
{{ end }}