awebsite/templates/shortcodes/gallery.html

15 lines
361 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">
<img src="{{ item.file }}" >
{% if item.title %}
<p class="caption">{{ item.title }}</p>
{% endif %}
</li>
{% endfor %}
</ul>
2025-05-05 13:15:39 +02:00
</div>