camp/content/templates/gallery.html

9 lines
313 B
HTML
Raw Normal View History

2017-12-19 12:42:00 +01:00
{% if gallery %}
2025-03-24 10:48:20 +00:00
<h6><strong>{{gallery.title}}</strong></h6>
2017-12-19 12:42:00 +01:00
<ul class="clearing-thumbs" data-clearing>
{% for photo in gallery.public %}
<li><a href="{{ gallery.get_absolute_url }}#{{forloop.counter}}"><img src="{{ photo.get_thumbnail_url }}"></a></li>
2017-12-19 12:42:00 +01:00
{% endfor %}
</ul>
{% endif %}