{% extends 'front/base_front.html.twig' %}
{% block title %}{{ homePage.title }}{% endblock %}
{% block SEO %}
{% if seo.homeSeoTitle is not empty %}
<meta name="title" content="{{ seo.homeSeoTitle }}">
{% endif %}
{% if seo.homeSeoDescription is not empty %}
<meta name="description" content="{{ seo.homeSeoDescription }}">
{% endif %}
{% endblock %}
{% block stylesheets %}
{{ parent() }}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block container %}
{# <!-- Banner Area --> #}
{{ include('front/main/subheader/slider.html.twig') }}
<div {{ react_component('HomeTabs/HomeSearchTabs', {
p_locale : app.session.get('_locale') ?? app.request.locale,
p_autocomplete : true,
p_hotel : modules['Hotel'],
p_flight : modules['Flight'],
p_transfer : modules['Transfer'],
p_hotelSuggestions : hotelSuggestions,
p_flightSuggestions : flightSuggestions,
}) }}>
</div>
{# {{ include('front/main/recent_search/recent_search_hotel.html.twig') }} #}
{% for zone in zones %}
{% if zone.active and zone.items is not empty %}
{{ include ('front/main/zones/zone'~zone.view~'.html.twig') }}
{% endif %}
{% endfor %}
{{ include('front/main/sections/sections_top_' ~ app.request.locale ~ '.html.twig') }}
{{ include('front/main/sections/section_b2b.html.twig') }}
{# {{ include('front/main/sections/sections_bottom_' ~ app.request.locale ~ '.html.twig') }} #}
{% include 'front/_faq.html.twig' with { faqs: faqs } only %}
{% endblock %}