12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {%
- set classes = [
- 'block',
- 'block-' ~ configuration.provider|clean_class,
- 'block-' ~ plugin_id|clean_class,
- ]
- %}
- <div{{ attributes.addClass(classes) }}>
- {{ title_prefix }}
- {% if label %}
- <button class="bouton bouton-contact">
- <h2{{ title_attributes }}>{{ label }}</h2>
- </button>
- {% endif %}
- {{ title_suffix }}
- {% block content %}
- {{ content }}
- {% endblock %}
- </div>
|