custom/plugins/WynTheme/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_icon %}
  3.   {% if icon != "false" %}
  4.     {% if type == "danger" %}
  5.       {% sw_icon 'danger' %}
  6.     {% elseif type == "warning" %}
  7.       {% sw_icon 'warning' %}
  8.     {% elseif type == "info" %}
  9.       {% sw_icon 'info' %}
  10.     {% elseif type == "success" %}
  11.       {% sw_icon 'checkmark-circle' %}
  12.     {% else %}
  13.       {% sw_icon 'alert' %}
  14.     {% endif %}
  15.   {% endif %}
  16. {% endblock %}
  17. {% block utilities_alert %}
  18.   {% if anchor %}
  19.     <a
  20.       href="{{ anchor }}"
  21.       class="alert-anchor-wrapper"
  22.     >
  23.       {{ parent() }}
  24.     </a>
  25.   {% else %}
  26.     {{ parent() }}
  27.   {% endif %}
  28. {% endblock %}