bootstrap_italia-8.x-0.x-dev/components/components-2/alert/alert-demo.html.twig
components/components-2/alert/alert-demo.html.twig
{#
/**
* @file
* Alert demo.
*
* Example:
*
{% include '@bi-bcl/alert/alert-demo.html.twig' %}
*/
#}
{% apply spaceless %}
{% embed '@bi-bcl/demo-container.html.twig' with {
title: 'Alert demo'|t,
path_demo_code: '/alert/alert-demo.html.twig#L26'
} %}
{% block content %}
{% set message = 'You are reading this important message.
This sample text will be longer so you can see how spacing works within an alert
with this type of content.' %}
{% set types = [
"primary", "info", "success", "warning", "danger"
] %}
{% for type in types %}
{% include '@bi-bcl/alert/alert.html.twig' with {
heading: 'Heading ' ~ type,
message: message,
type: type,
} %}
{% endfor %}
{% endblock %}
{% endembed %}{# End embed demo. #}
{% endapply %}
