templates/home/contact/_header.html.twig line 1

Open in your IDE?
  1. {% set mapCoordinate = getSiteSetting("contact-us-map-coordinate") %}
  2. {% set googleMapApiKey = getSiteSetting("google-map-api-key") %}
  3. {% if mapCoordinate is not empty and "," in mapCoordinate and googleMapApiKey is not empty %}
  4. <div class="wrapper-page-iframe">
  5. <iframe src="https://www.google.com/maps/embed/v1/place?key={{ googleMapApiKey }}&q={{ mapCoordinate }}&language={{ app.request.get('_locale') }}"
  6. width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"
  7. referrerpolicy="no-referrer-when-downgrade"></iframe>
  8. </div>
  9. {% else %}
  10. {% include "fe/_pages_header.html.twig" with {"pageTitle": pageTitle, "marginBottomZero": true } %}
  11. {% endif %}