XBackBone/install/templates/alert.twig
2018-11-11 19:18:27 +01:00

8 lines
No EOL
316 B
Twig

{% for type, message in alerts %}
<div class="alert alert-{{ type }} alert-dismissible fade show" role="alert">
{{ message }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
{% endfor %}