vendor/boldr/cms-bundle/src/Resources/views/layout-element/gallery-item.html.twig line 1

Open in your IDE?
  1. {% if link %}
  2. <a class="boldr-gallery-item" data-fancybox="{{ galleryId|default('gallery') }}" href="{{ image.defaultUrl }}" data-srcset="{% for key, s in image.types[image.defaultType]|filter((v,k) => k matches '/^\\d+$/') %}{% if not loop.first %}, {% endif %}{{ image.absoluteUrl ? absolute_url(s|replace({' ': '%20'})) : s|replace({' ': '%20'}) ~ ' ' ~ key ~ 'w' }}{% endfor %}">
  3. {% else %}
  4. <div class="boldr-gallery-item">
  5. {% endif %}
  6.     {{ boldr_cms_render(image) }}
  7.     {% if fancybox %}
  8.         <span class="boldr-gallery-item-more">
  9.             {{ fancybox }}
  10.         </span>
  11.     {% endif %}
  12. {% if link %}
  13. </a>
  14. {% else %}
  15. </div>
  16. {% endif %}