ProBundle/Resources/views/probundle/prestation/portfolio.html.twig line 1

Open in your IDE?
  1. {% if prestation.galleryImages is not empty %}
  2.     <section id="portfolio" class="pt-4">
  3.         <div class="container-fluid">
  4.             <div class="row">
  5.                 <div class="graphic-box pb-10">
  6.                     <h2 class="text-black main-text-parc pt-40">Portfolio</h2>
  7.                     <span class="bg-shift-color-title bg-grey"></span>
  8.                 </div>
  9.             </div>
  10.             <!-- Masonry 1 - HCF Bootstrap 5 Component -->
  11.             <section class="py-3 py-xl-4">
  12.                 <div class="container ">
  13.                     <div class="grid">
  14.                         <div class="grid-sizer"></div>
  15.                         {% for image in prestation.galleryImages %}
  16.                             <div class="grid-item">
  17.                                 <img src="{{asset('pro_bundle/images/prestations/gallery/' ~ image, 'pro_build' )}}" alt="">
  18.                             </div>
  19.                         {% endfor %}
  20.                     </div>
  21.                 </div>
  22.             </section>
  23.         </div>
  24.     </section>
  25. {% endif %}