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

Open in your IDE?
  1. {% extends '/front/layout.html.twig' %}
  2. {% block seotitle %}{% if metaTitle is not empty %}{{ metaTitle|raw }}{% else %}{{ parent() }}{% endif %}{% endblock %}
  3. {% block seodesc %}{% if metaDescription is not empty %}{{ metaDescription|raw}}{% else %}{{ parent() }}{% endif %}{% endblock %}
  4. {% block contenu %}
  5.     <div class="container padding-off margin-contenu">
  6.         <h1><span class="beige1 orange3-txt">
  7.         {{ titre | raw }}
  8.         </span></h1>
  9.         <div class="sous-titre-page-hp">
  10.             {{ description | raw }}
  11.         </div> 
  12.         <div id="destinations_list">
  13.             {%  if countheb == 0  %} 
  14.                 <div class="alert alert-warning text-center">
  15.                     Nous n'avons aucun hébergement à vous proposer pour l'instant sur cette destination
  16.                 </div>
  17.             {% else  %} 
  18.                 {% include "/front/Recherche/liste.html.twig" with {'mod': mod, 'datearrivee': datearrivee, 'duree': duree, 'nbadultes': nbadultes, 'nbenfants': nbenfants } %}
  19.             {% endif  %} 
  20.         </div>
  21.     </div>
  22.     {% if seoTitle is not empty  and seoContent is not empty %}
  23.     <div class="clearfix"></div>
  24.     <div class="container padding-off margin-contenu">
  25.         <h2 class="text-center"><span class="beige1 orange3-txt">{{ seoTitle | raw }}</span></h2>
  26.         {{ seoContent | raw }}
  27.     </div>
  28.     {% endif %}
  29. {% endblock %}