add gallery.html

This commit is contained in:
j 2017-12-19 12:42:00 +01:00
parent e5e44955cf
commit 9400e4a5e3

View File

@ -0,0 +1,8 @@
{% 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 %}