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

20 lines
458 B
HTML
Raw Normal View History

2024-05-22 21:37:08 -04:00
{{ if .Params.gallery }}
<div
class="grid grid-cols-{{ .Params.galleryColumns }} gap-8 my-8 w-full mt-20"
>
{{ range .Params.gallery }}
<div>
<img
src="{{ .image }}"
style="object-fit: cover"
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 }}