templates/pages/components/gallery.html.twig line 1

Open in your IDE?
  1. {% if content.galleryIsView %}
  2.     <div style="order: {{ content.galleryOrder ?? -1 }}">
  3.         <modern-gallery
  4.                 {% include 'pages/components/attributes/slot.html.twig' %}
  5.                 images="{{ adapt_attribute('gallery.images', content.galleryImages) | json_encode }}"
  6.                 size="{{ content.gallerySize }}"
  7.         ></modern-gallery>
  8.     </div>
  9. {% endif %}