{% sw_extends '@Storefront/storefront/utilities/alert.html.twig' %}
{% block utilities_alert_content %}
<div class="alert-content">
{% if list|length > 1 %}
<ul class="alert-list">
{% set alertCheck = '' %}
{% for entry in list %}
{% if alertCheck != entry|sw_sanitize %}
{% set alertCheck = entry|sw_sanitize %}
<li>{{ entry|sw_sanitize }}</li>
{% endif %}
{% endfor %}
</ul>
{% elseif list|length == 1 %}
{% for entry in list %}
{{ entry|sw_sanitize }}
{% endfor %}
{% else %}
{{ content|sw_sanitize }}
{% endif %}
</div>
{% endblock %}