# elementor/4.3.0/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig

Elementor Website Builder – more than just a page builder, version 4.3.0. 15 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.3.0/code/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig
- Raw: https://pluginprobe.com/plugins/elementor/4.3.0/raw/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig
- Modified: 2026-09-01T11:47:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/4.3.0/code/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig#L10-L20`.

```twig
{% import 'elementor/macros' as m %}
{%- set classes = settings.classes | merge( [ base_styles.base, m.default_tag_class(tag) ] ) | join(' ') -%}
<{{ tag | e('html_tag') }} data-interaction-id="{{ interaction_id }}" class="{{ classes }}"
	{{- m.render_custom_attributes(settings) }}>
{%- set allowed_tags = '<b><strong><sup><sub><s><em><i><u><a><del><span><br>' -%}
{%- if settings.link is defined and settings.link.href is defined and settings.link.href is not empty -%}
	<{{ settings.link.tag | default('a') | e('html_tag') }}
		{{- m.render_link_attributes(settings.link) }} class="{{ base_styles['link-base'] }} {{ m.default_tag_class(settings.link.tag | default('a')) }}">
		{{ settings.title | striptags(allowed_tags) | raw }}
	</{{ settings.link.tag | default('a') | e('html_tag') }}>
{%- else -%}
	{{ settings.title | striptags(allowed_tags) | raw }}
{%- endif %}
</{{ tag | e('html_tag') }}>

```
