{% extends "base.html.twig" %}
{% block content %}
{% if webspaceSettings is defined %}
{{ include('@components/sub-navigation.html.twig') }}
{% endif %}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage.url,
text: content.teaserText|raw,
order: {
text: '1',
image: '2'
},
link: {
text: content.teaserUrlTitle,
link: content.teaserUrl
}
}) }}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage1.url,
text: content.teaserText1|raw,
order: {
text: '2',
image: '1'
},
link: {
text: content.teaserUrlTitle1,
link: content.teaserUrl1
}
}) }}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage7 ? content.teaserImage7.url : '',
text: content.teaserText7|raw,
order: {
text: '1',
image: '2'
},
link: {
text: content.teaserUrlTitle7,
link: content.teaserUrl7
}
}) }}
{% if content.video is not null %}
{{ include('@components/video-section-with-text.html.twig', {
title: content.videoTitle,
text: content.videoText,
url: content.video.url,
background: 'grey',
order: {
text: '2',
video: '1'
}
}) }}
{% endif %}
{% if content.video1 is not null %}
{{ include('@components/video-section-with-text.html.twig', {
title: content.videoTitle1,
text: content.videoText1,
url: content.video1.url,
background: 'grey',
order: {
text: '1',
video: '2'
}
}) }}
{% endif %}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage2.url,
text: content.teaserText2|raw,
backgroundColorClass: "bg-white",
order: {
text: '2',
image: '1'
},
link: {
text: content.teaserUrlTitle2,
link: content.teaserUrl2
}
}) }}
{{ include('@components/image-text-section.html.twig', {
text: content.partsText|raw,
title: content.partsTitle,
backgroundColorClass: "bg-white",
imageIsIcon: true,
order: {
text: '1',
image: '2'
},
}) }}
<div class="container pb-5">
<div class="row">
<div class="col-12">
{{ include('@components/accordion.html.twig', {
accordionId: content.partsTitle|slug,
items: content.partsDetails
}) }}
</div>
</div>
</div>
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage3.url,
text: content.teaserText3|raw,
backgroundColorClass: "bg-white",
order: {
text: '1',
image: '2'
},
link: {
text: content.teaserUrlTitle3,
link: content.teaserUrl3
}
}) }}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage4.url,
text: content.teaserText4|raw,
backgroundColorClass: "bg-white",
order: {
text: '2',
image: '1'
},
link: {
text: content.teaserUrlTitle4,
link: content.teaserUrl4
}
}) }}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage5.url,
text: content.teaserText5|raw,
backgroundColorClass: "bg-white",
order: {
text: '1',
image: '2'
},
link: {
text: content.teaserUrlTitle5,
link: content.teaserUrl5
}
}) }}
{{ include('@components/rely-on-us-section.html.twig', {
title: content.relyTitle,
items: content.relyDetails,
}) }}
{{ include('@components/we-consult-you-slider.html.twig', {
title: content.consultingTitle,
text: content.consultingText,
items: content.consulting,
}) }}
{{ include('@components/contact-box.html.twig') }}
{{ include('@components/interests-slider.html.twig') }}
{% endblock %}