awebsite/templates/shortcodes/gallery.html

17 lines
492 B
HTML
Raw Normal View History

2025-05-05 23:35:33 +02:00
{% set gallery_data = load_data(literal = body, format="json") %}
2025-05-05 13:15:39 +02:00
2025-05-05 23:35:33 +02:00
<div id="image-gallery">
<ul class="gallery">
{% for item in gallery_data %}
<li class="gallery-item">
2025-05-14 15:08:38 +02:00
<a href="{{ item.file }}" class="lightbox" target="_blank">
<img src="{{ item.file }}" {% if item.alt %}alt="{{ item.alt }}"{% endif %}>
</a>
2025-05-05 23:35:33 +02:00
{% if item.title %}
<p class="caption">{{ item.title }}</p>
{% endif %}
</li>
{% endfor %}
</ul>
2025-05-05 13:15:39 +02:00
</div>