templates/themes/theme/templates/cmspage-contact.html.twig line 1

Open in your IDE?
  1. {% extends '@theme/base.html.twig' %}
  2. {% block metatitle %}{{page.metatitle}}{% endblock %}
  3. {% block metadescription %}{{page.metadescription|striptags|slice(0, 160)}}{% endblock %}
  4. {% block body %}
  5.     <script type="application/ld+json">
  6.         {
  7.             "@context": "https://schema.org",
  8.             "@type": "LocalBusiness",
  9.             "name": "{{ sitename }}",
  10.             "telephone": "{{ renderSetting(2, 'content') }}",
  11.             "email": "{{ renderSetting(3, 'content') }}",
  12.             "address": {
  13.                 "@type": "PostalAddress",
  14.                 "streetAddress": "42 Readmans Industrial Estate",
  15.                 "addressLocality": "East Tilbury",
  16.                 "addressRegion": "Essex",
  17.                 "postalCode": "RM18 8QR",
  18.                 "addressCountry": "GB"
  19.             },
  20.             "geo": {
  21.                 "@type": "GeoCoordinates",
  22.                 "latitude": "{{ renderSetting(4, 'content') }}",
  23.                 "longitude": "{{ renderSetting(5, 'content') }}"
  24.             },
  25.             "contactPoint": {
  26.                 "@type": "ContactPoint",
  27.                 "contactType": "Customer Service",
  28.                 "telephone": "{{ renderSetting(2, 'content') }}",
  29.                 "areaServed": "GB"
  30.             }
  31.         }
  32.     </script>
  33.     <section class="pt-[148px] md:pt-[163px]">
  34.         <h1 class="sr-only">{{ page.title }}</h1>
  35.         {{ renderComponents('Enquiry Form', pageComponents)|raw }}
  36.     </section>
  37. {% endblock %}
  38. {% block stylesheets %}{% endblock %}