templates/Includes/main-title-block.html.twig line 1

Open in your IDE?
  1. <div class="title-block title-block--main {{ hasSmallSpacing | default(false) ? 'title-block--small-spacing' : '' }} {{ isCentered | default(false) ? 'title-block--centered' : '' }} {{ isWhite | default(false) ? 'title-block--white' : '' }} content-block container {{ styleModifier|default('') }}">
  2.     <h1 class="title-block__title">{{ title }}</h1>
  3.     {% if subtitle|default(false) %}
  4.         <h2 class="title-block__sub-title {{ isSmallSubtitle | default('') ? 'title-block__sub-title--small' : ''}} ">{{ subtitle}}</h2>
  5.     {% endif %}
  6.     {{ extraHtml|default('')|raw }}
  7. </div>