Select Git revision
favicon.ico
-
Ondrej Rehounek authoredOndrej Rehounek authored
gallery.html 350 B
<div
class="
flex flex-wrap items-center gap-2 my-8 justify-center
lg:justify-start
"
>
{% for image in images %}
<a
class="w-40"
href="{{ image.source }}"
data-fancybox="gallery"
data-caption="{{ image.caption }}"
>
<img class="rounded" src="{{ image.source }}" />
</a>
{% endfor %}
</div>