{% extends '@theme/base.html.twig' %}
{% block metatitle %}{{page.metatitle}}{% endblock %}
{% block metadescription %}{{page.metadescription|striptags|slice(0, 160)}}{% endblock %}
{% block body %}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "AboutPage",
"name": "{{ page.metatitle }}",
"url": "{{ siteurl }}{{ path(app.request.attributes.get('_route'),app.request.attributes.get('_route_params')) }}",
"mainEntity": {
"@type": "LocalBusiness",
"name": "{{ sitename }}",
"description": "{{ page.metadescription|striptags|slice(0, 160) }}",
"url": "{{ siteurl }}",
"logo": {
"@type": "ImageObject",
"url": "{{ siteurl }}{{ imageCache(asset('build/images/kas-scaffolding-logo.png'), 'cropResize', 600, 232) }}",
"width": 600,
"height": 232
},
"address": {
"@type": "PostalAddress",
"streetAddress": "42 Readmans Industrial Estate",
"addressLocality": "East Tilbury",
"addressRegion": "Essex",
"postalCode": "RM18 8QR",
"addressCountry": "GB"
},
"telephone": "{{ renderSetting(2, 'content') }}",
"email": "{{ renderSetting(3, 'content') }}",
"areaServed": [
{
"@type": "Place",
"name": "London"
},
{
"@type": "Place",
"name": "Esssex"
},
{
"@type": "Place",
"name": "Kent"
},
{
"@type": "Place",
"name": "Cambridge"
},
{
"@type": "Place",
"name": "Oxford"
}
],
"sameAs": [
"{{ renderSetting(7, 'content') }}",
"{{ renderSetting(8, 'content') }}",
"{{ renderSetting(9, 'content') }}"
]
}
}
</script>
<section class="bg-pattern-light mb-12 pt-[148px] md:pt-[163px] mt-12">
<div class="container relative z-10">
<div class="row">
<div class="col-12">
<picture>
<source srcset="{{ imageCache('/userfiles/images/page/' ~ page.image, 'zoomCrop', 1566, 535) }}" media="(max-width: 767px)">
<img class="max-w-full h-auto" src="{{ imageCache('/userfiles/images/page/' ~ page.image, 'zoomCrop', 2340, 800) }}" width="1370" height="468" alt="{{ page.title }}" loading="lazy" />
</picture>
</div>
</div>
</div>
</section>
<section class="content">
<div class="container">
<div class="row">
<div class="lg:col-6 order-2 lg:order-1">
<img class="max-w-full h-auto" src="{{ imageCache('/userfiles/images/page/' ~ page.image2, 'zoomCrop', 1140, 1200) }}" width="670" height="706" alt="{{ page.title }}" loading="lazy" />
</div>
<div class="xl:col-5 xl:offset-1 lg:col-6 order-1 lg:order-2 flex flex-col justify-between mb-12 lg:mb-0">
<div class="text-lg">
{% if page.subtitle %}
<h3 class="text-green">{{ page.subtitle|raw }}</h3>
{% endif %}
<h1>{{ replaceIfComponentDataExists(pageComponents, "title", page.title) }}</h1>
{{ allowInlineEditor(page, 'content')|raw }}
</div>
<div>
<a class="btn btn-primary mt-12" href="{{ renderSetting(18, 'content') }}">{{ renderSetting(18, 'title') }}</a>
</div>
</div>
</div>
</div>
</section>
{% include '@theme/common/company-info.html.twig' %}
<div class="container text-center mb-12">
{{ renderComponents('Sector Slider', pageComponents)|raw }}
{{ renderComponents('Team', pageComponents)|raw }}
</div>
{{ renderComponents('FAQs', pageComponents)|raw }}
{% endblock %}
{% block stylesheets %}
{% endblock %}