templates/pages/midwifeteam-qm.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.         title: content.textHeadline,
  24.         text: content.text|raw
  25.     }) }}
  26.     <div class="container">
  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.         }
  44.     }) }}
  45.    {{ include('@components/image-text-section.html.twig', {
  46.         image: content.teaserImage2.url,
  47.         text: content.teaserText2|raw,
  48.         imageIsIcon: true,
  49.         order: {
  50.             text: '2',
  51.             image: '1'
  52.         },
  53.         link: {
  54.             withIcon: false,
  55.             text: content.teaserUrlTitle2
  56.         }
  57.     }) }}
  58.     {{ include('@components/table-section.html.twig', {
  59.         table: content.tabel,
  60.     }) }}
  61.     <div class="container mb-5">
  62.         <div class="row">
  63.             <div class="col-12">
  64.                 <span class="small-printed">
  65.                     {{ content.onlyText1|raw }}
  66.                 </span>
  67.             </div>
  68.         </div>
  69.     </div>
  70.     {{ include('@components/rely-on-us-section.html.twig', {
  71.         title: content.relyTitle,
  72.         items: content.relyDetails,
  73.     }) }}
  74.      {{ include('@components/image-text-section.html.twig', {
  75.         image: content.teaserImage3.url,
  76.         text: content.teaserText3|raw,
  77.         order: {
  78.             text: '1',
  79.             image: '2'
  80.         },
  81.         button: {
  82.             withIcon: true,
  83.             text: content.teaserUrlTitle3,
  84.             link: content.teaserUrl3
  85.         }
  86.     }) }}
  87.     <div class="container my-5">
  88.         <div class="row">
  89.             <div class="col-12">
  90.                 <h2 class="point light">{{ content.partsTitle }}</h2>
  91.             </div>
  92.             <div class="col-12">
  93.                 {{ include('@components/accordion.html.twig', {
  94.                     accordionId: content.partsTitle|slug,
  95.                     items: content.partsDetails
  96.                 }) }}
  97.             </div>
  98.         </div>
  99.     </div>
  100.     {{ include('@components/we-consult-you-slider.html.twig', {
  101.         title: content.consultingTitle,
  102.         text: content.consultingText,
  103.         items: content.consulting,
  104.     }) }}
  105.     {{ include('@components/contact-box.html.twig') }}
  106.     {{ include('@components/interests-slider.html.twig') }}
  107. {% endblock %}