Clean history, git LFS

This commit is contained in:
2025-07-05 15:36:34 +00:00
commit 70423ce723
141 changed files with 8484 additions and 0 deletions
@@ -0,0 +1,22 @@
{{ $slug := .Page.Slug }}
{{ $galleryName := .Get "name" }}
{{ $file := printf "%s.yaml" $galleryName }}
{{ $galleryData := .Page.Resources.GetMatch $file | transform.Unmarshal }}
<div class="gallery grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">
{{ range $galleryData.images }}
<figure class="{{ .class | default "" }}">
<img
src="{{ site.Params.filesBase }}/{{ $slug }}/{{ .src }}"
alt="{{ .alt | default "" }}"
loading="lazy"
decoding="async" />
{{ with .caption }}
<figcaption>{{ . }}</figcaption>
{{ end }}
</figure>
{{ end }}
</div>