Gallery - phoenix Listing Directory
The snippet can be accessed without any authentication.
Authored by
Gilblas Ngunte Possi
Edited
<div class="owl-carousel wt-list-single-provider-gallery mfp-gallery gallery owl-btn-vertical-center bg-white">
{% set gallerie_de_photos = field("gallerie_de_photos", settings.post_id) %}
{% if gallerie_de_photos is not empty %}
{% for photo in gallerie_de_photos %}
<div class="item">
<div class="wt-list-single2-gallery-wrap">
<div class="wt-list-single2-gallery-overlay"></div>
<div class="wt-list-single2-gallery-pic"> {% if photo is not empty %}
{% set photos = la_photo(photo, 'large') %}
<img src="{{ photos.0 }}" width="{{ photos.1 }}" height="{{ photos.2 }}" alt="{{ title }}" title="{{ title }}">
<a href="{{ photos.0 }}" class="mfp-link wt-list-single2-gallery-zoom"><i class="fa fa-arrows-alt"></i></a>
{% endif %}</div>
</div>
</div>
{% endfor %}
{% endif %}
</div>
Please register or sign in to comment