templates/branch_office/_map.html.twig line 1

  1. {% if branch_office.widget2gis %}
  2. <div class="container">
  3.     <div class="map_area">
  4.         <div class="map_header text-center">
  5.             <h1 class="wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".4s">Атлас кальянная Красноярск</h1>
  6.         </div>
  7.             {{ branch_office.widget2gis|raw }}
  8.         <div id="{{ branch_office.slug }}_contacts" class="color_h1 location_information black_bg wow fadeInUp" data-wow-duration="1s" data-wow-delay=".3s">
  9.             <h1>Атлас "{{ branch_office.name }}"</h1>
  10.                 <div class="info_wrap">
  11.                     {% if branch_office.address %}
  12.                     <div class="single_info">
  13.                         <span>Адрес:</span>
  14.                         <p>{{ branch_office.address }}</p>
  15.                     </div>
  16.                     {% endif %}
  17.                     {% if branch_office.phoneNumber %}
  18.                     <div class="single_info">
  19.                         <span>Телефон:</span>
  20.                         <a href="tel:{{ branch_office.phoneNumber }}">{{ branch_office.phoneNumber }}</a>
  21.                     </div>
  22.                     {% endif %}
  23.                     {% if branch_office.instLink or branch_office.vkLink or branch_office.whatsappLink %}
  24.                     <div class="single_info">
  25.                         <span>Наши сети:</span>
  26.                         <span>
  27.                         {% if branch_office.instLink %}
  28.                         <a target="_blank" href={{ branch_office.instLink }}> <img src="{{ asset('build/images/Atlas/Logo/logo_instagram.svg') }}" weight=25px, height=25px, alt=""> </a>
  29.                         {% endif %}
  30.                         {% if branch_office.vkLink %}
  31.                         <a target="_blank" href={{ branch_office.vkLink }}> <img src="{{ asset('build/images/Atlas/Logo/logo_vk.svg') }}" weight=25px, height=25px, alt=""> </a>
  32.                         {% endif %}
  33.                         {% if branch_office.whatsappLink %}
  34.                         <a target="_blank" href="https://wa.me/{{ branch_office.whatsappLink }}?text=Здравствуйте,%20Хотели%20бы%20забронировать%20столик/комнату%20в%20вашем%20заведении.%20"> <img src="{{ asset('build/images/Atlas/Logo/logo_WhatsApp.svg') }}" weight=25px, height=25px, alt=""> </a>
  35.                         {% endif %}
  36.                         </span>
  37.                     </div>
  38.                     {% endif %}
  39.                 </div>
  40.             </div>
  41.         </div>
  42.     </div>
  43. </div>
  44. {% endif %}