Alert

Display different types of alert messages to highlight important information, statuses, or warnings.

Info

{% alert_info() %}
  Info alert
{% end %}

Success

{% alert_success() %}
  Success alert
{% end %}

Warning

{% alert_warning() %}
  Warning alert
{% end %}

Error

{% alert_error() %}
  Error alert
{% end %}

Styles

You can customize the alert style using the style parameter. Available styles are:

  • soft (default)
  • outline
  • dash

Soft (default)

{% alert_info(style="soft") %}
  Info alert with soft style
{% end %}

Outline

{% alert_info(style="outline") %}
  Info alert with outline style
{% end %}

Dash

{% alert_info(style="dash") %}
  Info alert with dash style
{% end %}