templates/Includes/mixed-flatrate-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|default(''),
  7.         subtitle: subtitle|default(''),
  8.         isCentered: true,
  9.         wysiwyg: wysiwyg|default(''),
  10.     }) }}
  11.     {% if not items is empty %}
  12.         {{ include('Includes/Partials/mixed-flatrate-and-teaser-row.html.twig', {
  13.             items: items|default([]),
  14.             textSnippet: textSnippet|default([])
  15.         }) }}
  16.     {% endif %}
  17. </section>