{% for photo in collection %}
<!--Gallery Two Single Start-->
<div class="col-md-3">
<div class="item">
<div class="gallery-two__img">
<a data-fancybox="gallery" data-caption="{{ photo.title }}" href="{{ asset(photo.getThumbnailPath()|imagine_filter('thumbnail_large')) }}">
<img src="{{ asset(photo.getThumbnailPath()|imagine_filter('thumbnail_large')) }}" alt="{{ photo.title }}">
</a>
</div>
</div>
</div>
<!--Gallery Two Single End-->
{% else %}
<div class="col-md-12">
<div class="empty-photos text-center">
<h3>No photos found in this gallery</h3>
</div>
</div>
{% endfor %}