diff options
Diffstat (limited to 'src/application/templates/bootstrap-3/components/alert_success.twig')
-rw-r--r-- | src/application/templates/bootstrap-3/components/alert_success.twig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/application/templates/bootstrap-3/components/alert_success.twig b/src/application/templates/bootstrap-3/components/alert_success.twig new file mode 100644 index 0000000..1c8f403 --- /dev/null +++ b/src/application/templates/bootstrap-3/components/alert_success.twig @@ -0,0 +1,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> |