Files
hugo-snap-gallery/layouts/partials/gallery.html

10 lines
459 B
HTML
Raw Normal View History

2024-02-05 15:06:31 +01:00
{{- $imgs := .imgs -}}
{{- $galno := .galno -}}
2024-02-05 15:33:43 +01:00
<div class="snap-gallery" style="--columns:{{ default 4 .columns }};--min-width:{{ default "200px" .minwidth }};--gap:10px;--cursor:{{ .cursor }};--aspectratio:{{ safeCSS (default "16/10" .aspectratio) }};">
2024-02-05 15:06:31 +01:00
{{- range $i, $img := $imgs -}}
<div class="snap-image">
<img src="{{ $img }}" onclick="openLightbox({{ $galno }});openLightboxItem({{ $galno }}, {{ add $i 1 }});">
</div>
2024-02-05 15:06:31 +01:00
{{- end -}}
</div>