templates/components/Alert.html.twig line 1

Open in your IDE?
  1. <div{{ attributes }} class="mb-2 mt-2">
  2. <!-- component html -->
  3. <div class="alert alert-{{ this.type }} border border-2 d-flex align-items-center" role="alert">
  4. <div class="bg-{{ this.type }} me-3 icon-item"><span class="fas {{ this.icone }} text-white fs-3"></span></div>
  5. <div class="mb-0 flex-1">
  6. {% if this.titre != null %}
  7. <h4 class="alert-heading">{{ this.titre }}</h4>
  8. {% endif %}
  9. <p>
  10. {% block content %}{% endblock %}
  11. </p>
  12. </div>
  13. {# <button class="btn-close" type="button" data-bs-dismiss="alert" aria-label="Close"></button> #}
  14. </div>
  15. </div>