templates/pages/midwifeteam-my-midwife-azh.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.         }
  17.     }) }}
  18.     {{ include('@components/text-white-box-section.html.twig', {
  19.         title: content.overviewTitle,
  20.         items: content.overviewDetails,
  21.     }) }}
  22.     {{ include('@components/rely-on-us-section.html.twig', {
  23.         title: content.relyTitle,
  24.         items: content.relyDetails,
  25.     }) }}
  26.     {{ include('@components/we-consult-you-slider.html.twig', {
  27.         title: content.consultingTitle,
  28.         text: content.consultingText,
  29.         items: content.consulting,
  30.     }) }}
  31.     {{ include('@components/contact-box.html.twig') }}
  32.     {{ include('@components/interests-slider.html.twig') }}
  33. {% endblock %}