templates/front/Home/slider.html.twig line 1

Open in your IDE?
  1. <!-- *********************** Carrousel *********************** -->
  2. <div id="carousel-home" class="carousel slide slider-mobile hidden-xs hidden-sm" data-ride="carousel">
  3.     <!-- Wrapper for slides -->
  4.     {% if slider|length > 1%}
  5.         <!-- Indicators -->
  6.         <ol class="carousel-indicators hidden-xs">
  7.             {% for i in range(1, slider|length) %}
  8.                 <li data-target="#carousel-home" data-slide-to="{{ i-1 }}"{% if loop.index == 1%} class="active"{% endif %}></li>
  9.             {% endfor %}
  10.         </ol>
  11.     {% endif %}
  12.     <div class="carousel-inner" role="listbox">
  13.     {% if slider is not null %}
  14.         {% for slide in slider %}
  15.             {% if slide.etat %}
  16.             <div class="item{% if loop.index ==  1%} active{% endif %}">
  17.               <a href="{% if slide.url is not null %}{{ slide.url }}{% else %}#{% endif %}">
  18.                 <img 
  19.                     src="{{ asset(slide.media.webPath) }}"
  20.                     srcset="{{ asset(slide.media.webPath | imagine_filter('full_width_320') ) }} 320w,
  21.                         {{ asset(slide.media.webPath | imagine_filter('full_width_640') ) }} 640w,
  22.                         {{ asset(slide.media.webPath | imagine_filter('full_width_640') ) }} 768w,
  23.                         {{ asset(slide.media.webPath | imagine_filter('full_width_1024') ) }} 1024w,
  24.                         {{ asset(slide.media.webPath | imagine_filter('full_width_1280') ) }} 1280w,
  25.                         {{ asset(slide.media.webPath | imagine_filter('full_width_1366') ) }} 1366w,
  26.                         {{ asset(slide.media.webPath | imagine_filter('full_width_1900') ) }} 1900w"
  27.                     data-sizes="100vw"
  28.                     alt="{{ slide.titre }}"
  29.                     loading="lazy" />
  30.               </a>
  31.             </div>
  32.             {% endif %}
  33.         {% endfor %}
  34.         {% endif %}
  35.     </div>
  36.     {% if slider|length > 1%}
  37.         <a class="left carousel-control" href="#carousel-home" role="button" data-slide="prev">
  38.             <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
  39.             <span class="sr-only">Previous</span>
  40.         </a>
  41.         <a class="right carousel-control" href="#carousel-home" role="button" data-slide="next">
  42.             <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  43.             <span class="sr-only">Next</span>
  44.         </a>
  45.     {% endif %}
  46. </div>