{% extends 'layout.html.twig' %}
{% block body_class %}is-experience
{{ hotel.isApartment ? 'is-apartament' : ''}}
{% endblock %}
{% block content %}
{% if experience.hotel.googleStructuredCode %}
{% include 'partials/global/google_structured_code.html.twig' with { googleStructuredCode: experience.hotel.googleStructuredCode } %}
{% endif %}
{% include 'partials/global/booking_top.html.twig' with {'show_label': false, 'hotel':experience.hotel, 'idhotel':experience.hotel.miraiHotelId } %}
<main class="main-block--container">
{% include 'partials/experience/image-header.html.twig' %}
{% if hotel is defined and hotel.isApartment %}
{% include 'partials/hotel_detail/hotel_submenu.html.twig' %}
{% endif %}
{% include 'partials/experience/introduction.html.twig' %}
{% include 'partials/global/content-feature.html.twig' with({showBlock: true})%}
{% include 'partials/experience/benefits.html.twig' with({showBlock: experience.showAdvantages1,advantages: experience.advantages}) %}
{% include 'partials/experience/introduction2.html.twig' %}
{% include 'partials/global/content-feature2.html.twig' with({showBlock: true})%}
{% include 'partials/experience/content-tabs.html.twig' %}
{% include 'partials/global/find-us.html.twig' with {hotel: experience.hotel} %}
{% include 'partials/experience/book-banner.html.twig' %}
{# {% include 'partials/global/experiences_form.html.twig' with {form: experience} %} #}
</main>
{% endblock content %}
{% block scripts %}
{% set hotelID = experience.hotel.id %}
{% set hotId = '' %} {# variable de The hotels network js de cada Hotel #}
{% set propId = '' %} {# variable de The hotels network js de cada Hotel #}
{% if hotelID == '1' %}
{% set hotId = '1090472' %}
{% set propId = '1014971' %}
{% elseif hotelID == '2'%}
{% set hotId = '1090473' %}
{% set propId = '1014972' %}
{% elseif hotelID == '3'%}
{% set hotId = '1090474' %}
{% set propId = '1014973' %}
{% elseif hotelID == '4'%}
{% set hotId = '1090475' %}
{% set propId = '1014974' %}
{% elseif hotelID == '5'%}
{% set hotId = '1091745' %}
{% set propId = '1016247' %}
{% endif %}
<!-- The hotels network js de cada Hotel-->
{% include 'partials/global/the_hotels_networks_script.html.twig' with {'hotelId': hotId, 'propertyId': propId} %}
<!-- End The hotels network -->
{% if app.environment != 'dev' %}
{% set APIKey = 'AIzaSyAXyWhWi4KED9OkijxCAhRqWjlr3abYynU' %}
{% else %}
{% set APIKey = 'AIzaSyD_QU5Eu9l4nwbZfjr8BMcdBUJ1USQiA2I' %}
{% endif %}
<script src='https://maps.googleapis.com/maps/api/js?key={{ APIKey }}&libraries=geometry,places'></script>
{% endblock %}