templates/partials/project.html.twig line 1

Open in your IDE?
  1. <!--Start Visa Area-->
  2. <section class="visa-area mt-4">
  3.     <div class="container">
  4.         <div class="sec-title text-center">
  5.             <h3>Nos projets</h3>
  6.             <p>Projets mis en oeuvre par l'Académie Bilimon</p>
  7.         </div>
  8.         <div class="row">
  9.             <div class="col-xl-12">
  10.                 <div class="theme-carousel event-carousel owl-carousel owl-theme owl-dot-style1" data-options='{"loop":true, "margin":40, "autoheight":true, "nav":false, "dots":true, "autoplay":true, "stagePadding":15, "autoplayTimeout":10000, "smartSpeed":700, "responsive":{ "0":{"items": "1"}, "500":{"items": "1"}, "767":{"items": "2"}, "1199":{"items": "3"}, "1600":{"items": "3"} }}'>
  11.                     <!--Start Single Visa Box-->
  12.                     {% for project in projects %}
  13.                         <div class="single-visa-box">
  14.                             <div class="img-holder">
  15.                                 <div class="inner">
  16.                                     <img src="{{ asset('media/files/' ~ project.illustration) }}" alt="Awesome Image">
  17.                                     <div class="overlay-style-one bg1"></div>
  18.                                 </div>
  19.                             </div>
  20.                             <div class="text-holder">
  21.                                 <h3><a href="{{ path('app_projects_show', {'slug': project.slug}) }}">{{ project.title }}</a></h3>
  22.                                 <p>{{ project.summary | raw }}</p>
  23.                             </div>
  24.                         </div>
  25.                     {% endfor %}
  26.                     <!--End Single Visa Box-->
  27.                  
  28.                 </div>
  29.             </div>
  30.         </div>
  31.     </div>
  32. </section>
  33. <!--End Visa Area-->