{% if title|default(false) or subtitle|default(false) or content|default(false) %}
<div class="title-block {{ hasSmallSpacing | default(false) ? 'title-block--small-spacing' : '' }} {{ isCentered | default(false) ? 'title-block--centered' : '' }} {{ isWhite | default(false) ? 'title-block--white' : '' }} {{ styleModifier|default('') }}">
{% if icon|default(null) %}
<span class="title-block__icon icon icon-{{ icon }}" aria-hidden="true"></span>
{% endif %}
{% if subtitle|default(false) %}
<h3 class="title-block__sub-title h6">{{ subtitle| raw }}</h3>
{% endif %}
{% if title|default(false) %}
<h2 class="title-block__title js-toc__title {{ titleStyleModifier | default(null) }}">{{ title }}</h2>
{% endif %}
{% if content|default(false) %}
<div class="wysiwyg title-block__wysiwyg">{{ content|raw }}</div>
{% endif %}
</div>
{% endif %}