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

Elementor Website Builder – more than just a page builder, version 3.32.0-dev1. 13 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.32.0-dev1/code/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig
- Raw: https://pluginprobe.com/plugins/elementor/3.32.0-dev1/raw/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig
- Modified: 2025-08-05T14:00:00+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/3.32.0-dev1/code/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig#L10-L20`.

```twig
{% if settings.title is not empty %}
	{% set id_attribute = settings._cssid is not empty ? 'id=' ~ settings._cssid | e('html_attr') : '' %}
	<{{ settings.tag | e('html_tag') }} class="{{ settings.classes | merge( [ base_styles.base ] ) | join(' ') }}" {{ id_attribute }} {{ settings.attributes | raw }}>
	{% if settings.link.href %}
		<a href="{{ settings.link.href }}" target="{{ settings.link.target }}" class="{{ base_styles['link-base'] }}">
			{{ settings.title }}
		</a>
	{% else %}
		{{ settings.title }}
	{% endif %}
	</{{ settings.tag | e('html_tag') }}>
{% endif %}

```
