templates/pages/azhfive.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block content %}
  3.     {% if webspaceSettings is defined %}
  4.         {{ include('@components/sub-navigation.html.twig') }}
  5.     {% endif %}
  6.     {{ include('@components/image-text-section.html.twig', {
  7.         image: content.teaserImage.url,
  8.         text: content.teaserText|raw,
  9.         order: {
  10.             text: '1',
  11.             image: '2'
  12.         },
  13.         button: {
  14.             withIcon: false,
  15.             text: content.teaserUrlTitle,
  16.             link: content.teaserUrl
  17.         }
  18.     }) }}
  19.     {{ include('@components/software-preview-slider.html.twig', {
  20.         images: content.overviewDetails
  21.     }) }}
  22.     {{ include('@components/text-without-image.html.twig', {
  23.         text: content.text|raw,
  24.         title: content.textHeadline
  25.     }) }}
  26.     <div class="container mt-5">
  27.         <div class="row">
  28.             <div class="col-12">
  29.                 {{ content.onlyText|raw }}
  30.             </div>
  31.         </div>
  32.     </div>
  33.     {{ include('@components/image-text-section.html.twig', {
  34.         image: content.teaserImage1.url,
  35.         text: content.teaserText1|raw,
  36.         order: {
  37.             text: '1',
  38.             image: '2'
  39.         },
  40.         link: {
  41.             withIcon: false,
  42.             text: content.teaserUrlTitle1,
  43.             link: content.teaserUrl1
  44.         }
  45.     }) }}
  46.     {{ include('@components/image-text-section.html.twig', {
  47.         image: content.teaserImage2.url,
  48.         text: content.teaserText2|raw,
  49.         order: {
  50.             text: '2',
  51.             image: '1'
  52.         },
  53.         button: {
  54.             withIcon: true,
  55.             text: content.teaserUrlTitle2,
  56.             link: content.teaserUrl2,
  57.             order: {
  58.                 icon: '2',
  59.                 text: '1'
  60.             }
  61.         }
  62.     }) }}
  63.     {{ include('@components/image-text-section.html.twig', {
  64.         image: content.teaserImage3.url,
  65.         text: content.teaserText3|raw,
  66.         imageIsIcon: true,
  67.         order: {
  68.             text: '1',
  69.             image: '2'
  70.         },
  71.         link: {
  72.             withIcon: false,
  73.             text: content.teaserUrlTitle3,
  74.             link: content.teaserUrl3
  75.         }
  76.     }) }}
  77.     {{ include('@components/table-section.html.twig', {
  78.         table: content.tabel,
  79.     }) }}
  80.     <div class="container">
  81.         <div class="row">
  82.             <div class="col-12 mt-3">
  83.                 <span class="small-printed">{{ content.onlyText1|raw }}</span>
  84.             </div>
  85.         </div>
  86.     </div>
  87.     {{ include('@components/rely-on-us-section.html.twig', {
  88.         title: content.relyTitle,
  89.         items: content.relyDetails,
  90.     }) }}
  91.     {{ include('@components/image-text-section.html.twig', {
  92.         image: content.teaserImage4.url,
  93.         text: content.teaserText4|raw,
  94.         order: {
  95.             text: '1',
  96.             image: '2'
  97.         },
  98.         button: {
  99.             withIcon: true,
  100.             text: content.teaserUrlTitle4,
  101.             link: content.teaserUrl4
  102.         }
  103.     }) }}
  104.     <div class="container my-5">
  105.         <div class="row">
  106.             <div class="col-12">
  107.                 <h2 class="point light">{{ content.partsTitle }}</h2>
  108.             </div>
  109.             <div class="col-12">
  110.                 {{ include('@components/accordion.html.twig', {
  111.                     accordionId: content.partsTitle|slug,
  112.                     items: content.partsDetails
  113.                 }) }}
  114.             </div>
  115.         </div>
  116.     </div>
  117.     {{ include('@components/we-consult-you-slider.html.twig', {
  118.         title: content.consultingTitle,
  119.         text: content.consultingText,
  120.         items: content.consulting,
  121.     }) }}
  122.     {{ include('@components/contact-box.html.twig') }}
  123.     {{ include('@components/interests-slider.html.twig') }}
  124. {% endblock %}