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