Alert
Display different types of alert messages to highlight important information, statuses, or warnings.
Info
Info alert
{% alert_info() %}
Info alert
{% end %}
Success
Success alert
{% alert_success() %}
Success alert
{% end %}
Warning
Warning alert
{% alert_warning() %}
Warning alert
{% end %}
Error
Error alert
{% alert_error() %}
Error alert
{% end %}
Styles
You can customize the alert style using the style parameter. Available styles are:
soft(default)outlinedash
Soft (default)
Info alert with soft style
{% alert_info(style="soft") %}
Info alert with soft style
{% end %}
Outline
Info alert with outline style
Success alert with outline style
Warning alert with outline style
Error alert with outline style
{% alert_info(style="outline") %}
Info alert with outline style
{% end %}
Dash
Info alert with dash style
Success alert with dash style
Warning alert with dash style
Error alert with dash style
{% alert_info(style="dash") %}
Info alert with dash style
{% end %}