birdsounds.media/layouts/partials/photos-grid.html

21 lines
469 B
HTML
Raw Normal View History

<ul class="photos-grid">
{{ range . }}
<li>
<a href="{{ .Permalink }}">
{{ $page := . }}
{{ $alt := or .Title "image" }}
{{ with resources.GetMatch .Params.photo_asset}}
{{ $tinyw := default "480x webp Lanczos" }}
{{ $page.Scratch.Set "tiny" (.Resize $tinyw) }}
{{ $tiny := $page.Scratch.Get "tiny" }}
<img class="photo-asset" src="{{ $tiny.Permalink }}" alt="{{ $alt }}" title="{{ $alt }}">
{{ end }}
</a>
</li>
{{end}}
</ul>