{% macro alert_warning(message, title, icon) %} {{ _self.alert('warning', message, title, icon) }} {% endmacro %} {% macro alert_info(message, title, icon) %} {{ _self.alert('info', message, title, icon) }} {% endmacro %} {% macro alert_danger(message, title, icon) %} {{ _self.alert('danger', message, title, icon) }} {% endmacro %} {% macro alert_success(message, title, icon) %} {{ _self.alert('success', message, title, icon) }} {% endmacro %} {% macro alert(type, message, title, icon) %}
{% if title %}
{% if icon %}{% endif %} {{ title }}
{% endif %} {{ message }}
{% endmacro %}