{% 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'
},
button: {
withIcon: false,
text: content.teaserUrlTitle,
link: content.teaserUrl
}
}) }}
{{ include('@components/software-preview-slider.html.twig', {
images: content.overviewDetails
}) }}
{{ include('@components/text-without-image.html.twig', {
text: content.text|raw,
title: content.textHeadline
}) }}
<div class="container mt-5">
<div class="row">
<div class="col-12">
{{ content.onlyText|raw }}
</div>
</div>
</div>
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage1.url,
text: content.teaserText1|raw,
order: {
text: '1',
image: '2'
},
link: {
withIcon: false,
text: content.teaserUrlTitle1,
link: content.teaserUrl1
}
}) }}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage2.url,
text: content.teaserText2|raw,
order: {
text: '2',
image: '1'
},
button: {
withIcon: true,
text: content.teaserUrlTitle2,
link: content.teaserUrl2,
order: {
icon: '2',
text: '1'
}
}
}) }}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage3.url,
text: content.teaserText3|raw,
imageIsIcon: true,
order: {
text: '1',
image: '2'
},
link: {
withIcon: false,
text: content.teaserUrlTitle3,
link: content.teaserUrl3
}
}) }}
{{ include('@components/table-section.html.twig', {
table: content.tabel,
}) }}
<div class="container">
<div class="row">
<div class="col-12 mt-3">
<span class="small-printed">{{ content.onlyText1|raw }}</span>
</div>
</div>
</div>
{{ include('@components/rely-on-us-section.html.twig', {
title: content.relyTitle,
items: content.relyDetails,
}) }}
{{ include('@components/image-text-section.html.twig', {
image: content.teaserImage4.url,
text: content.teaserText4|raw,
order: {
text: '1',
image: '2'
},
button: {
withIcon: true,
text: content.teaserUrlTitle4,
link: content.teaserUrl4
}
}) }}
<div class="container my-5">
<div class="row">
<div class="col-12">
<h2 class="point light">{{ content.partsTitle }}</h2>
</div>
<div class="col-12">
{{ include('@components/accordion.html.twig', {
accordionId: content.partsTitle|slug,
items: content.partsDetails
}) }}
</div>
</div>
</div>
{{ 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 %}