bootstrap_italia-8.x-0.x-dev/components/components-0x/callouts/callout.twig
components/components-0x/callouts/callout.twig
{#
/**
* @file
* Template for a callout componet
* Docs: https://italia.github.io/bootstrap-italia/docs/componenti/callout/
* Latest revision: v2.6.1
*
* Available config:
* + variant: "default" | "highlight"
* + message_type: "success" | "warning" | "danger" | "important" | "note" | null
* + title: string
* + text: string
*/
#}
{% apply spaceless %}
{% include '@bi-bcl/deprecated.html.twig' with {
old: 'bootstrap_italia_components/callout/callout.twig',
new: 'bi-bcl/callout/callout.html.twig',
} %}
{# Redirect to new component #}
{% if variant == 'default' %}
{% set variant = false %}
{% endif %}
{% include '@bi-bcl/callout/callout.html.twig' with {
callout_variant: message_type ?? null,
display: variant ?? null,
title: title ?? null,
text: text ?? null,
} %}
{% endapply %}
