templates/pages/wehe-consulting.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.             
  15.             text: content.teaserUrlTitle,
  16.             link: content.teaserUrl
  17.         }
  18.     }) }}
  19.     {{ include('@components/image-text-section.html.twig', {
  20.         image: content.teaserImage1.url,
  21.         text: content.teaserText1|raw,
  22.         order: {
  23.             text: '2',
  24.             image: '1'
  25.         },
  26.         link: {
  27.             
  28.             text: content.teaserUrlTitle1,
  29.             link: content.teaserUrl1
  30.         }
  31.     }) }}
  32.     {{ include('@components/image-text-section.html.twig', {
  33.         image: content.teaserImage2.url,
  34.         text: content.teaserText2|raw,
  35.         order: {
  36.             text: '1',
  37.             image: '2'
  38.         },
  39.         link: {
  40.             
  41.             text: content.teaserUrlTitle2,
  42.             link: content.teaserUrl2
  43.         }
  44.     }) }}
  45.     {{ include('@components/image-text-section.html.twig', {
  46.         image: content.teaserImage3.url,
  47.         text: content.teaserText3|raw,
  48.         order: {
  49.             text: '2',
  50.             image: '1'
  51.         },
  52.         link: {
  53.             text: content.teaserUrlTitle3,
  54.             link: content.teaserUrl3
  55.         }
  56.     }) }}
  57.     {{ include('@components/rely-on-us-section.html.twig', {
  58.         title: content.relyTitle,
  59.         items: content.relyDetails,
  60.     }) }}
  61.     {{ include('@components/we-consult-you-slider.html.twig', {
  62.         title: content.consultingTitle,
  63.         text: content.consultingText,
  64.         items: content.consulting,
  65.     }) }}
  66.     {{ include('@components/contact-box.html.twig') }}
  67.     {{ include('@components/interests-slider.html.twig') }}
  68. {% endblock %}