templates/pages/azhseven.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.         link: {
  14.             text: content.teaserUrlTitle,
  15.             link: content.teaserUrl
  16.         }
  17.     }) }}
  18.     {{ include('@components/image-text-section.html.twig', {
  19.         image: content.teaserImage1.url,
  20.         text: content.teaserText1|raw,
  21.         order: {
  22.             text: '2',
  23.             image: '1'
  24.         },
  25.         link: {
  26.             text: content.teaserUrlTitle1,
  27.             link: content.teaserUrl1
  28.         }
  29.     }) }}
  30.     <div class="bg-grey">
  31.         {{ include('@components/image-text-section.html.twig', {
  32.             image: asset('build/website/images/Audit.png'),
  33.             text: content.partsText|raw,
  34.             title: content.partsTitle,
  35.             imageIsIcon: true,
  36.             order: {
  37.                 text: '1',
  38.                 image: '2'
  39.             },
  40.         }) }}
  41.         <div class="container pb-5">
  42.             <div class="row">
  43.                 <div class="col-12">
  44.                     {{ include('@components/accordion.html.twig', {
  45.                         accordionId: content.partsTitle|slug,
  46.                         items: content.partsDetails
  47.                     }) }}
  48.                 </div>
  49.             </div>
  50.         </div>
  51.     </div>
  52.     {{ include('@components/image-text-section.html.twig', {
  53.         image: content.teaserImage2.url,
  54.         text: content.teaserText2|raw,
  55.         order: {
  56.             text: '2',
  57.             image: '1'
  58.         },
  59.         link: {
  60.             text: content.teaserUrlTitle2,
  61.             link: content.teaserUrl2
  62.         }
  63.     }) }}
  64.     {{ include('@components/image-text-section.html.twig', {
  65.         image: content.teaserImage3.url,
  66.         text: content.teaserText3|raw,
  67.         order: {
  68.             text: '1',
  69.             image: '2'
  70.         },
  71.         link: {
  72.             text: content.teaserUrlTitle3,
  73.             link: content.teaserUrl3
  74.         }
  75.     }) }}
  76.     {{ include('@components/image-text-section.html.twig', {
  77.         image: content.teaserImage4.url,
  78.         text: content.teaserText4|raw,
  79.         order: {
  80.             text: '2',
  81.             image: '1'
  82.         },
  83.         link: {
  84.             text: content.teaserUrlTitle4,
  85.             link: content.teaserUrl4
  86.         }
  87.     }) }}
  88.     {{ include('@components/rely-on-us-section.html.twig', {
  89.         title: content.relyTitle,
  90.         items: content.relyDetails,
  91.     }) }}
  92.     {{ include('@components/we-consult-you-slider.html.twig', {
  93.         title: content.consultingTitle,
  94.         text: content.consultingText,
  95.         items: content.consulting,
  96.     }) }}
  97.     {{ include('@components/contact-box.html.twig') }}
  98.     {{ include('@components/interests-slider.html.twig') }}
  99. {% endblock %}