templates/default/experience_detail.html.twig line 1

Open in your IDE?
  1. {% extends 'layout.html.twig' %}
  2. {% block body_class %}is-experience
  3. {{ hotel.isApartment ? 'is-apartament' : ''}}
  4. {% endblock %}
  5. {% block content %}
  6. {% if experience.hotel.googleStructuredCode  %}
  7.     {% include 'partials/global/google_structured_code.html.twig' with { googleStructuredCode: experience.hotel.googleStructuredCode } %}
  8. {% endif %}
  9. {% include 'partials/global/booking_top.html.twig' with {'show_label': false, 'hotel':experience.hotel, 'idhotel':experience.hotel.miraiHotelId } %}
  10. <main class="main-block--container">
  11.     {% include 'partials/experience/image-header.html.twig' %}
  12.     {% if hotel is defined and hotel.isApartment %}
  13.         {% include 'partials/hotel_detail/hotel_submenu.html.twig' %}
  14.     {% endif %}
  15.     {% include 'partials/experience/introduction.html.twig' %}
  16.     {% include 'partials/global/content-feature.html.twig' with({showBlock: true})%}
  17.     {% include 'partials/experience/benefits.html.twig' with({showBlock: experience.showAdvantages1,advantages: experience.advantages}) %}
  18.     {% include 'partials/experience/introduction2.html.twig' %}
  19.     {% include 'partials/global/content-feature2.html.twig' with({showBlock: true})%}
  20.     {% include 'partials/experience/content-tabs.html.twig' %}
  21.     {% include 'partials/global/find-us.html.twig' with {hotel: experience.hotel} %}
  22.     {% include 'partials/experience/book-banner.html.twig' %}
  23.     {# {% include 'partials/global/experiences_form.html.twig' with {form: experience} %} #}
  24. </main>
  25. {% endblock content %}
  26. {% block scripts %}
  27.     {% set hotelID = experience.hotel.id %}
  28.     {% set hotId = '' %} {# variable de The hotels network js de cada Hotel #}
  29.     {% set propId = '' %} {# variable de The hotels network js de cada Hotel #}
  30.     {% if hotelID == '1' %}
  31.     {% set hotId = '1090472' %}
  32.     {% set propId = '1014971' %}
  33.     {% elseif hotelID == '2'%}
  34.     {% set hotId = '1090473' %}
  35.     {% set propId = '1014972' %}
  36.     {% elseif hotelID == '3'%}
  37.     {% set hotId = '1090474' %}
  38.     {% set propId = '1014973' %}
  39.     {% elseif hotelID == '4'%}
  40.     {% set hotId = '1090475' %}
  41.     {% set propId = '1014974' %}
  42.     {% elseif hotelID == '5'%}
  43.     {% set hotId = '1091745' %}
  44.     {% set propId = '1016247' %}
  45.     {% endif %}
  46.     <!-- The hotels network js de cada Hotel-->
  47.     {% include 'partials/global/the_hotels_networks_script.html.twig' with {'hotelId': hotId, 'propertyId': propId} %}
  48.     <!-- End The hotels network  -->
  49.     {% if app.environment != 'dev' %}
  50.         {% set APIKey = 'AIzaSyAXyWhWi4KED9OkijxCAhRqWjlr3abYynU' %}
  51.             {% else %}
  52.         {% set APIKey = 'AIzaSyD_QU5Eu9l4nwbZfjr8BMcdBUJ1USQiA2I' %}
  53.     {% endif %}
  54.     <script src='https://maps.googleapis.com/maps/api/js?key={{ APIKey }}&libraries=geometry,places'></script>
  55. {% endblock %}