templates/front/Recherche/theme.html.twig line 1

Open in your IDE?
  1. {% extends '/front/layout.html.twig' %}
  2. {% block contenu %}
  3.     <div class="container padding-off margin-contenu">
  4.     <div class="col-md-12 col-sm-12 col-xs-12">
  5.             <h1><span class="beige1 orange3-txt">{{ titre }}</span></h1>
  6.             <div class="sous-titre-page-hp">{{ description |raw }}</div>
  7.     </div>
  8.         {% if hebergements |length > 0 %}
  9.             {% include "/front/Recherche/liste.html.twig" with {'btname': 'reserver'} %}
  10.             {% include "/front/_blocks/pagination.html.twig" with {'nbPages': nbPages, 'currentPage': currentPage} %}
  11.         {% endif %}
  12.     </div>
  13. {% endblock %}