Heading: H 2 Subtext

No notes defined.

<div>

    <h2 class="h2">
        Heading
    </h2>

    <p class="h2 sds-headingLight">Heading subtext</p>

</div>
{% if subText %}
<div {% if modifiers or classes %}class="{% endif %}{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}{% if modifiers or classes %}"{% endif %}>
{% endif %}
	<{{ eltType }}{% if eltType === "h" %}{{ headingLvl }}{% endif %} class="h{{ headingLvlClass or headingLvl }}{% if not subText %}{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}{% endif %}">
		{{ text | safe }}
	</{{ eltType }}{% if eltType === "h" %}{{ headingLvl }}{% endif %}>
	{% if subText %}
		<p class="{% if headingLvl %}h{{ headingLvl }} {% endif %}{{ namespace }}headingLight">{{ subText | safe }}</p>
	{% endif %}
{% if subText %}
</div>
{% endif %}