{% extends '@theme/base.html.twig' %}
{% block title %}{{ page.title }}{% endblock %}
{% 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": "LocalBusiness",
"name": "{{ sitename }}",
"url": "{{ siteurl }}",
"image": "{{ siteurl }}{{ imageCache(asset('build/images/kas-scaffolding-logo.png'), 'cropResize', 600, 232) }}",
"description": "{{ page.metadescription|striptags|slice(0, 160) }}",
"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') }}",
"geo": {
"@type": "GeoCoordinates",
"latitude": "{{ renderSetting(4, 'content') }}",
"longitude": "{{ renderSetting(5, 'content') }}"
},
"sameAs": [
"{{ renderSetting(7, 'content') }}",
"{{ renderSetting(8, 'content') }}",
"{{ renderSetting(9, 'content') }}"
]
}
</script>
<section class="video w-full flex items-center text-white">
{% if page.file %}
<video autoplay muted playsinline loop id="myVideo">
<source src="{{ page.getFileUrl }}" type="video/mp4">
Your browser does not support the video tag.
</video>
{% endif %}
<div class="container relative z-20">
<div class="row">
<div class="lg:col-8 md:col-10 sm:col-12 col-12">
<h1>{{ allowInlineEditor(page, 'title')|raw }}</h1>
</div>
</div>
<div class="row">
<div class="lg:col-7 md:col-8 sm:col-12 col-12">
{{ allowInlineEditor(page, 'kicker')|raw }}
<a class="btn btn-primary" href="{{ renderSetting(21, 'content') }}">{{ renderSetting(21, 'title') }}</a>
</div>
</div>
<a href="/nasc-membership" class="absolute bottom-0 right-4 z-20 block">
<img src="{{ imageCache(asset('build/images/nasc-logo.png'), 'cropResize', 340, 80) }}" width="170" height="40" alt="NASC accredited logo" loading="lazy" />
</a>
</div>
</section>
<section class="pt-10">
{{ renderComponents('Before Content', pageComponents)|raw }}
<div class="container">
<div class="row flex items-center">
<div class="lg:col-3 hidden lg:block">
<div>
<div class="img-top"></div>
<div class="lg:-mr-72 relative z-30">
<img class="max-w-full h-auto" src="{{ imageCache('/userfiles/images/page/' ~ page.image, 'zoomCrop', 900, 840) }}" width="608" height="568" alt="{{ page.title }}" loading="lazy" />
</div>
<div class="img-btm"></div>
</div>
</div>
<div class="lg:col-9">
<div class="bg-extend bg-primary text-white text-xl font-light py-12 lg:py-24 lg:pl-80 lg:pr-8 relative z-20 cms-area">
{{ allowInlineEditor(page, 'content')|raw }}
<a class="btn btn-white mt-12" href="{{ renderSetting(20, 'content') }}">{{ renderSetting(20, 'title') }}</a>
{% include '@theme/common/certified.html.twig' %}
</div>
</div>
</div>
</div>
{{ renderComponents('After Content', pageComponents)|raw }}
</section>
<section class="split mb-16 relative">
<div class="container">
<div class="split-wrapper text-white md:flex md:flex-row">
<div class="split-left md:w-1/2 bg-secondary py-12 pr-4">
{{ allowInlineEditor(page, 'content2')|raw }}
<a class="btn btn-white mt-12" href="{{ renderSetting(22, 'content') }}">{{ renderSetting(22, 'title') }}</a>
</div>
<div class="split-right md:w-1/2 py-12 md:pl-36">
{{ renderComponents('Service List', pageComponents)|raw }}
</div>
</div>
</div>
</section>
<section class="featured-team-members text-center mb-12">
<div class="container">
{{ renderComponents('Team Members', pageComponents)|raw }}
</div>
</section>
{{ renderHtmlBlock('Content Block', pageHtmlBlocks, page)|raw }}
{{ renderComponents('Contact Form', pageComponents)|raw }}
{% endblock %}
{% block stylesheets %}
{% endblock %}