custom/plugins/MadBodymedTheme/src/Resources/views/storefront/utilities/alert.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/utilities/alert.html.twig' %}
  2. {% block utilities_alert_content %}
  3.     <div class="alert-content">
  4.         {% if list|length > 1 %}
  5.             <ul class="alert-list">
  6.                 {% set alertCheck = '' %}
  7.                 {% for entry in list %}
  8.                     {% if alertCheck != entry|sw_sanitize %}
  9.                         {% set alertCheck = entry|sw_sanitize %}
  10.                         <li>{{ entry|sw_sanitize }}</li>
  11.                     {% endif %}
  12.                 {% endfor %}
  13.             </ul>
  14.         {% elseif list|length == 1 %}
  15.             {% for entry in list %}
  16.                 {{ entry|sw_sanitize }}
  17.             {% endfor %}
  18.         {% else %}
  19.             {{ content|sw_sanitize }}
  20.         {% endif %}
  21.     </div>
  22. {% endblock %}