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