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

10 lines
369 B
HTML
Raw Normal View History

2024-02-01 15:25:21 +01:00
{{ $imgs := .imgs }}
{{ $galno := .galno }}
2024-02-05 12:15:46 +01:00
<div class="snap-gallery" style="--columns:{{ default 4 .columns }};--min-width:{{ default "200px" .minwidth }};--gap:10px;">
2024-02-01 15:25:21 +01:00
{{ range $i, $img := $imgs }}
<div class="snap-image">
2024-02-01 16:34:27 +01:00
<img src="{{ $img }}" onclick="openLightbox({{ $galno }});openLightboxItem({{ $galno }}, {{ add $i 1 }});">
2024-02-01 15:25:21 +01:00
</div>
{{ end }}
</div>