{% extends "base.html.twig" %}
{% block content %}
{{ include('@components/hero-header.html.twig', {
image: content.image.url,
text: content.heroImageText
}) }}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage.url,
text: content.teaserText|raw,
order: {
text: '1',
image: '2'
},
button: {
withIcon: true,
text: content.teaserUrlTitle,
link: content.teaserUrl
}
}) }}
<div class="bg-grey py-5">
<div class="container">
<div class="row">
<div class="col-12">
<h2>{{ content.bigButtonsTitle|raw }}</h2>
{{ content.bigButtonsText|raw }}
</div>
</div>
<div class="row mt-4">
{% for bigButtonsDetail in content.bigButtonsDetails %}
<div class="col-12 col-lg-4">
<a href="{{ bigButtonsDetail.bigButtonsUrl }}">
<span class="d-flex align-items-center justify-content-center my-2 my-lg-0 py-3 text-white" style="background-color: {{ bigButtonsDetail.bigButtonsColor }}">
<span class="fs-2 fw-bold">{{ bigButtonsDetail.bigButtonsTitle }}</span>
</span>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
{% if content.video is not null %}
{{ include('@components/video-section.html.twig', {
title: content.videoTitle,
url: content.video.url,
background: 'grey',
order: {
video: '1'
}
}) }}
{% endif %}
<div class="container pt-5">
<div class="row mb-5">
<div class="col-12">
<h2 class="point light">{{ content.overviewTitle|raw }}</h2>
{{ content.overviewText|raw }}
</div>
</div>
<div class="row match-height-card-small g-3" data-match-height-group="card-small-group">
{% for overviewDetail in content.overviewDetails %}
<div class="col-12 col-md-6 col-lg-4 col-xl-3">
{{ include('@components/card-small.html.twig', {
title: overviewDetail.overviewBlockTitle,
text: overviewDetail.overviewBlockText,
image: overviewDetail.overviewBlockImage.formats['440x200'],
link: overviewDetail.overviewBlockUrl,
customLink: overviewDetail.customLink,
customAnchor: overviewDetail.customAnchor
}) }}
</div>
{% endfor %}
</div>
</div>
{{ include('@components/we-in-numbers.html.twig', {
title: content.numbersTitle,
items: content.numbersDetails
}) }}
<div class="container my-5">
<div class="row">
<div class="col-12">
<h2 class="point light mb-4">{{ content.carouselMainTitle|raw }}</h2>
</div>
<div class="col-12">
<div class="swiper-testimonials-wrapper">
<div class="swiper-testimonials">
<div class="swiper-wrapper">
{% for carouselItem in content.carouselDetails %}
<div class="swiper-slide">
<div class="fw-bold">{{ carouselItem.carouselTitle }}</div>
<div class="position-relative mt-4">
<div class="swiper-text">{{ carouselItem.carouselText }}</div>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="swiper-button-next button-next"></div>
<div class="swiper-button-prev button-prev"></div>
</div>
</div>
</div>
</div>
{% endblock %}