{% 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
}
}) }}
<div class="bg-grey">
{{ include('@components/image-text-section.html.twig', {
image: asset('build/website/images/Audit.png'),
text: content.partsText|raw,
title: content.partsTitle,
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>
</div>
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage2.url,
text: content.teaserText2|raw,
order: {
text: '2',
image: '1'
},
link: {
text: content.teaserUrlTitle2,
link: content.teaserUrl2
}
}) }}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage3.url,
text: content.teaserText3|raw,
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,
order: {
text: '2',
image: '1'
},
link: {
text: content.teaserUrlTitle4,
link: content.teaserUrl4
}
}) }}
{{ 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 %}