{% if this.gallery_items %} {% for gallery in this.gallery_items.blocks %} {% if gallery.image %} {% set gallery_img_file = record.attachments.get(gallery.image) %} {% set is_svg = gallery.image.split('.')[-1].lower() in ['svg', 'svgz'] %} {% endif %} {% set gallery_class_string = 'fh5co-item' %} {% if gallery.url and gallery.url.url != '' and (gallery.direct_link or not gallery.image) %} {% set gallery_link = gallery.url %} {% elif gallery.image and (gallery_img_file.thumbnail or is_svg) %} {% set gallery_link = gallery.image %} {% set gallery_class_string = gallery_class_string ~ ' image-popup' %} {% else %} {% set gallery_link = '' %} {% endif %} {% if this.show_titles %} {% set gallery_class_string = gallery_class_string ~ ' gallery-item-title' %} {% endif %} {% if this.show_titles %}

{{ gallery.title }}

{% endif %}

{{ gallery.title }}

{% if gallery.subtitle %}

{{ gallery.subtitle }}

{% endif %}
{% endfor %} {% endif %}