templates/Includes/mixed-img-and-text-teaser-area.html.twig line 1

Open in your IDE?
  1. <section class="{{ styleModifier | default(null) }} {{ anchorNavItem | default(null) ? 'js-anchor-nav__item' : '' }}"
  2.     {% if anchorNavItem | default(null) and anchorNavTitle | default(null) %}
  3.     data-anchor-nav-title="{{ anchorNavTitle }}"
  4.     {% endif %}>
  5.     {{ include('Includes/title-block.html.twig', {
  6.         title: title,
  7.         subtitle: subtitle,
  8.         isCentered: true,
  9.         wysiwyg: wysiwyg
  10.     }) }}
  11.     {{ include('Includes/Partials/mixed-img-and-text-teaser-row.html.twig', {
  12.         items: items|default([]),
  13.         textSnippet: textSnippet|default([])
  14.     }) }}
  15. </section>