19 lines
473 B
HTML
19 lines
473 B
HTML
{{ 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-[{{ .aspectRatio }}] 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 }}
|