bootstrap_italia-8.x-0.x-dev/components/components-0x/alert/alert.twig
components/components-0x/alert/alert.twig
{#
/**
* @file
* Template for Alert component.
* Docs: https://italia.github.io/bootstrap-italia/docs/componenti/alert/
* Latest revision: v2.6.1
*
* Available config:
* + type: info | success | warning | danger
* + heading: string,
* + dimissible: true | false
* + utility_classes: An array of utility classes.
*/
#}
{% apply spaceless %}
{% include '@bi-bcl/deprecated.html.twig' with {
old: 'bootstrap_italia_components/alert/alert.twig',
new: 'bi-bcl/alert/alert.html.twig',
} %}
{# Redirect to new component #}
{% include '@bi-bcl/alert/alert.html.twig' with {
type: type ?? null,
message: heading ?? null,
dimissible: dimissible ?? null,
alert_classes: utility_classes ?? null,
} %}
{% endapply %}
