templates/pages/services.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block content %}
  3.     {{ include('@components/hero-header.html.twig', {
  4.         image: content.image.url,
  5.         text: content.heroImageText
  6.     }) }}
  7.     {{ include('@components/image-text-section.html.twig', {
  8.         image: content.teaserImage.url,
  9.         text: content.teaserText|raw,
  10.         order: {
  11.             text: '1',
  12.             image: '2'
  13.         }
  14.     }) }}
  15.     {{ include('@components/services-section.html.twig', {
  16.         title: content.servicesOverviewTitle,
  17.         items: content.servicesOverviewDetails,
  18.         changeLastItem: true
  19.     }) }}
  20. {% endblock %}