templates/accueil/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2.     {% block stylesheets %}
  3.         <style>
  4.         .video-responsive {
  5.         overflow:hidden;
  6.         padding-bottom:56.25%;
  7.         position:relative;
  8.         height:0;
  9.         }
  10.         .video-responsive iframe {
  11.         left:0;
  12.         top:0;
  13.         height:100%;
  14.         width:100%;
  15.         position:absolute;
  16.         }
  17.         </style>
  18.     {% endblock %}
  19. {% block body %}
  20. <main class="main">
  21.     {% include 'accueil/partials/_home-slider.html.twig' %}
  22.     {% include 'accueil/partials/_banner_categories.html.twig' %}
  23.     {% include 'accueil/partials/_meilleur_produits.html.twig' %}
  24.     {% include 'accueil/partials/_best_offer.html.twig' %}
  25.     {% include 'accueil/partials/_offres_jour.html.twig' %}
  26.     {# {% include 'accueil/partials/_grid-exposant.html.twig' %} #}
  27. </main>
  28. {% endblock %}