# elementor/3.30.0-dev3/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.html.twig

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

- Page: https://pluginprobe.com/plugins/elementor/3.30.0-dev3/code/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.html.twig
- Raw: https://pluginprobe.com/plugins/elementor/3.30.0-dev3/raw/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.html.twig
- Modified: 2025-06-10T09:36:30+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.30.0-dev3/code/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.html.twig#L10-L20`.

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

```
