templates/partials/global/find-us.html.twig line 1

Open in your IDE?
  1. <section class="find-us" data-lat="{{ hotel.latitude }}" data-lng="{{ hotel.longitude }}"
  2.     data-center-lat="{{ hotel.centeredLatitude }}" data-center-lng="{{ hotel.centeredLongitude }}">
  3.     <div class="container">
  4.         <div class="find-us--left">
  5.             <h4 class="find-us--left-toptitle subtitle-caps" data-description="{{ hotel.title }}">{{ hotel.title }}</h4>
  6.             <h3 class="find-us--left-title ">{{ 'app.experience.find_us.title' | trans }}</h3>
  7.             <address class="find-us--left-text subtitle-regular">
  8.                 <a href="tel:{{ hotel.phone }}" class="ux-phone-event">
  9.                     <p>{{ hotel.phone }}</p>
  10.                 </a>
  11.                 <a class="find-us--mail ux-email-event" href="mailto:{{ hotel.email }}">
  12.                     <strong>{{ hotel.email }}</strong>
  13.                 </a>
  14.                 <p>
  15.                     {{ hotel.addressLine1 }}
  16.                     <br>
  17.                     {{ hotel.addressLine2 }}
  18.                 </p>
  19.                 <a href="{{ hotel.googleUrl }}" class="find-us--map-link link white" target="_blank">
  20.                     <span>{{ 'app.global.view_in_maps' | trans }}</span>
  21.                 </a>
  22.                 <a href="#" class="find-us--map-link link white js-opener-popup" data-dest="maps-info">
  23.                     <span>{{ 'app.global.how_to_get_there' | trans }}</span>
  24.                 </a>
  25.             </address>
  26.         </div>
  27.         <div class="find-us--right">
  28.             <div class="find-us--map js-map-hotel">
  29.             </div>
  30.         </div>
  31.         <div class="maps-info js-container--popup" id="maps-info">
  32.             <div class="maps-info--content">
  33.                 <span class="maps-info--close js-closer-popup">{% include 'partials/global/svg/close.svg.twig' %}</span>
  34.                 <div class="maps-info--text">{{ hotel.howToGetThere|raw }}</div>
  35.                 <div class="maps-info--image"
  36.                     style="background-image: url({{ hotel.howToGetThereImage |  resize(750)|file_url }});"></div>
  37.             </div>
  38.         </div>
  39.     </div>
  40. </section>