9 lines
298 B
HTML
9 lines
298 B
HTML
|
{% if gallery %}
|
||
|
<h6><strong>Gallery: {{gallery.title}}</strong></h6>
|
||
|
<ul class="clearing-thumbs" data-clearing>
|
||
|
{% for photo in gallery.public %}
|
||
|
<li><a href="{{ photo.get_absolute_url }}"><img src="{{ photo.get_thumbnail_url }}"></a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endif %}
|