templates/front/Default/index.html.twig line 1

Open in your IDE?
  1. {% extends '/front/layout.html.twig' %}
  2. {% trans_default_domain 'app' %}
  3. {% block contenu %}
  4.     
  5.     {% include "/front/Home/slider.html.twig" %}
  6.    
  7.     <div class="container padding-off  margin-bottom-20 ">
  8.         {% include "/front/Home/mea.html.twig" %}
  9.             
  10.         {% if promos|length > 0 %}
  11.             <div class="col-md-12 col-sm-12 col-xs-12">
  12.                 <h1><span class="beige1 orange3-txt">
  13.                     {{ ('promos.bon-plans-du-moment.title')|trans({}, 'promos') | raw }}
  14.                 </span></h1>
  15.                 <p class="sous-titre-page-hp">
  16.                     {{ ('promos.bon-plans-du-moment.description')|trans({}, 'promos') | raw }}
  17.                 </p>
  18.             </div>
  19.             {% include "/front/Promos/liste.html.twig" %}
  20.         {% endif %}
  21.     </div>
  22.     
  23.     <div class="index-philo">
  24.         <div class="container">
  25.             <div class="col-md-8 col-sm-12 col-xs-12 filtre">
  26.                 <h4>{{ 'home.philosophie.titre' |trans({}, 'cms') |raw }}</h4>
  27.                 <h5>{{ 'home.philosophie.soustitre' |trans({}, 'cms') |raw }}</h5>
  28.                 <p>{{ 'home.philosophie.texte' |trans({}, 'cms') |raw }}</p>
  29.             </div>
  30.         </div>
  31.     </div>
  32.    
  33. {% endblock %}