gallowelds.com/themes/gallo/layouts/partials/gallery.html
brooke 8f0b8fe5dd
All checks were successful
Hugo / build (push) Successful in 9s
lazy loading
2024-07-15 14:58:34 -04:00

20 lines
481 B
HTML

{{ if .Params.gallery }}
<div
class="grid grid-cols-1 sm:grid-cols-2 max-w-[800px] gap-4 my-8 w-full mt-20"
>
{{ range .Params.gallery }}
<div>
<img
src="{{ .image }}"
style="object-fit: cover"
loading="lazy"
class="aspect-[1/1] w-full rounded-lg"
/>
<div class="gap-4 flex flex-col">
<p class="text-xl font-bold pt-2">{{ .title }}</p>
<p class="text-sm">{{ .description }}</p>
</div>
</div>
{{ end }}
</div>
{{ end }}