templates/Components/boxes.html.twig line 1

  1. <section id="recent-blog">
  2.     <div class="row top-offer" style="padding-top: 10px;">
  3.         <div class="container">
  4.             <div class="owl-carousel" id="post-list">
  5.                 {% for box in boxes %}
  6.                     {% include 'Components/Destination/homepage.old.html.twig' with {'box': box} %}
  7.                 {% endfor %}
  8.             </div>
  9.         </div>
  10.     </div>
  11. </section>