templates/frontend/homepage.html.twig line 1

Open in your IDE?
  1. {% extends "layout/frontend.html.twig"%}
  2. {% block body %}
  3.         <div id="carouselSlideMain" class="carousel slide w-100 h-100 miau" data-ride="carousel">
  4.             <div class="carousel-inner w-100 h-100">
  5.                 {% for image in images %}
  6.                     <div class="carousel-item {% if loop.first %} active {% endif %} w-100 h-100">
  7.                         <div class="w-100 h-100" style="background-image:url('{{asset('/slider/')}}{{image.sliderImage}}');background-repeat:no-repeat;background-size:cover;background-position: 50% 50%;top: -2px;left: -2px;right: -2px;bottom: -2px;"></div>
  8.                         <div style="bottom: 40px;" class="z-index-1 p-absolute w-100 justify-content-end align-items-end text-left row mx-0">
  9.                             <div class="col-md-6 offset-md-6 text-left" style="">
  10.                                 {% if image.sliderText %}
  11.                                     <h1 class="text-white mb-0">PRO></h1>
  12.                                     <h1 class="text-white">{{image.sliderText}}</h1>
  13.                                 {% endif %}
  14.                             </div>
  15.                         </div>
  16.                     </div>
  17.                 {% endfor %}
  18.             </div>
  19.         </div>
  20. {% endblock %}
  21. {% block javascripts %}
  22.     <script>
  23.         $('#carouselSlideMain').carousel({
  24.             interval: 3000,
  25.             pause: "false"
  26.         })
  27.     </script>
  28. {% endblock %}