summaryrefslogtreecommitdiff
path: root/src/application/templates/bootstrap-3/components/alert_error.twig
blob: f3f759bd50e15858a37e6225f6d3c7e301b2a441 (plain)
1
2
3
4
5
6
7
8
<div class="alert alert-danger" role="alert">
    <span class="fa fa-exclamation-circle" aria-hidden="true"></span>
    {% if message starts with "?!HTML::" %}
        {{ message|slice(8)|raw }}
    {% else %}
        {{ message }}
    {% endif %}
</div>