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

Open in your IDE?
  1. {% extends 'front/base.html.twig' %}
  2. {% block head %}{% endblock %}
  3. {% block body %}
  4.     {# {% include 'front/includes/accueil/modal-msg-tmp.html.twig' %} #}
  5.     {% include 'front/includes/header-zone.html.twig' %}
  6.     {% include 'front/includes/accueil/slider.html.twig' %}
  7.     {% if productsHighlight | length > 0 %}
  8.         <div class="wrapper">
  9.             {% include 'front/includes/accueil/produits-phares.html.twig' %}
  10.         </div>
  11.         <!-- /.wrapper -->
  12.     {% endif %}
  13.     {% include 'front/includes/accueil/presentation.html.twig' %}
  14.     {% if productsOpportunities | length > 0 %}
  15.         <div class="wrapper">
  16.             {% include 'front/includes/accueil/produits-occasions.html.twig' %}
  17.         </div>
  18.         <!-- /.wrapper -->
  19.     {% endif %}
  20.     {% if blogLastEntries | length > 0 %}
  21.         <div class="wrapper">
  22.             {% include 'front/includes/accueil/articles-blog.html.twig' %}
  23.         </div>
  24.         <!-- /.wrapper -->
  25.     {% endif %}
  26.     {% include 'front/includes/footer.html.twig' %}
  27. {% endblock %}