XBackBone/resources/templates/comp/alert.twig
Sergio Brighenti 805d1d07a8 Initial commit
2018-04-28 14:20:07 +02:00

8 lines
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 %}