summaryrefslogtreecommitdiff
path: root/src/application/templates/modern/components/alert_info.twig
blob: 6559ac2e782c3d64855821d8eb9f9dda5cf34153 (plain)
1
2
3
4
5
6
7
8
<div class="alert alert-info" role="alert">
    <svg viewBox="0 0 24 24" class="icon"><circle cx="12" cy="12" r="10"/><path d="M12 16v-4"/><path d="M12 8h.01"/></svg>
    {% if message starts with "?!HTML::" %}
        {{ message|slice(8)|raw }}
    {% else %}
        <span>{{ message }}</span>
    {% endif %}
</div>