a
9aa43df629
The basic parts of the layouts/theme should work. I have only populated 2 albums so far.
21 lines
469 B
HTML
21 lines
469 B
HTML
<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> |