project modules: heading.h3

Available Variants

h2 h3

Heading Text

heading README

This needs docs!
Create a README.md in the pattern's directory and add details about using this pattern in markdown.

heading Twig The markup file.
{% if heading_markup %}
	<h{{ heading_level_text }}
		{% if heading_id_attr %}
		id="{{ heading_id_attr }}"
		{% endif %}
		class="heading larva // {{ heading_classes }} {{ heading_animation_class }} {{ heading_typography_class }} {{ heading_color_class }} {{ heading_background_color_class }} {{ heading_text_align_class }}"
	>
		{{ heading_markup }}
	</h{{ heading_level_text }}>
{% endif %}
heading.h3 JSON The data object for this pattern.
{
	"heading_level_text": "3",
	"heading_classes": "",
	"heading_color_class": "",
	"heading_text_align_class": "",
	"heading_typography_class": "a-font-primary-bold-m",
	"heading_background_color_class": "",
	"heading_markup": "Heading Text"
}