gallowelds.com/themes/gallo/layouts/partials/gallery.html

21 lines
481 B
HTML
Raw Normal View History

2024-05-22 21:37:08 -04:00
{{ if .Params.gallery }}
<div
2024-07-15 10:08:32 -04:00
class="grid grid-cols-1 sm:grid-cols-2 max-w-[800px] gap-4 my-8 w-full mt-20"
2024-05-22 21:37:08 -04:00
>
{{ range .Params.gallery }}
<div>
<img
src="{{ .image }}"
style="object-fit: cover"
2024-07-15 14:58:34 -04:00
loading="lazy"
class="aspect-[1/1] w-full rounded-lg"
2024-05-22 21:37:08 -04:00
/>
<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 }}