{% for photo in gallery.photos.all %}
{% if CONFIG.THUMBNAIL_ENABLED %}
{% thumbnail photo.image photo.get_thumbnail_size crop="center" as im %}{% include "djangocms_unitegallery/_photo.html" %}{% endthumbnail %}
{% else %}
{% with photo.image as im %}{% include "djangocms_unitegallery/_photo.html" %}{% endwith %}
{% endif %}
{% endfor %}