| 1 |
{% if settings.title is not empty %} |
| 2 |
{% set id_attribute = settings._cssid is not empty ? 'id=' ~ settings._cssid | e('html_attr') : '' %} |
| 3 |
<{{ settings.tag | e('html_tag') }} class="{{ settings.classes | merge( [ base_styles.base ] ) | join(' ') }}" {{ id_attribute }} {{ settings.attributes | raw }}> |
| 4 |
{% if settings.link.href %} |
| 5 |
<a href="{{ settings.link.href }}" target="{{ settings.link.target }}" class="{{ base_styles['link-base'] }}"> |
| 6 |
{{ settings.title }} |
| 7 |
</a> |
| 8 |
{% else %} |
| 9 |
{{ settings.title }} |
| 10 |
{% endif %} |
| 11 |
</{{ settings.tag | e('html_tag') }}> |
| 12 |
{% endif %} |
| 13 |
|