templates/pages/azhone.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 ? content.teaserImage.url,
  8.         text: content.teaserText|raw,
  9.         order: {
  10.             text: '1',
  11.             image: '2'
  12.         }
  13.     }) }}
  14.     {{ include('@components/services-section.html.twig', {
  15.         items: content.servicesOverviewDetails
  16.     }) }}
  17.     {{ include('@components/rely-on-us-section.html.twig', {
  18.         title: content.relyTitle,
  19.         items: content.relyDetails,
  20.     }) }}
  21.     {{ include('@components/we-consult-you-slider.html.twig', {
  22.         title: content.consultingTitle,
  23.         text: content.consultingText,
  24.         items: content.consulting,
  25.     }) }}
  26.     {{ include('@components/contact-box.html.twig') }}
  27.     {{ include('@components/interests-slider.html.twig') }}
  28. {% endblock %}