src/Elements/Bundle/DemiFrontendBundle/Resources/views/Includes/elements/image-list-element.mobile.html.twig line 1

Open in your IDE?
  1. <li class="mb-1">
  2.     <figure class="figure">
  3.         {{ image.getThumbnail('demi-responsive-detail-big').getHTML({'imgAttributes': {
  4.             'disableWidthHeightAttributes': true,
  5.             'class': 'img-full-width' ~ (lazy ? ' js-lazy-img js-lazy-img--img lazy-img-placeholder': ''),
  6.             'useDataSrc': lazy
  7.         }}) | raw }}
  8.         <div class="figure__right-overlay">
  9.             {{ key+1 }}
  10.         </div>
  11.     </figure>
  12.     <div class="p-2 demi-image-captions">
  13.         <small>
  14.             {{ demi_getNameAndCopyrightForImage(image) }}
  15.         </small>
  16.     </div>
  17. </li>