custom/apps/AtlKatanaTheme/Resources/views/storefront/component/pseudo-modal.html.twig line 1

Open in your IDE?
  1. <div class="js-pseudo-modal-template">
  2.     <div class="modal fade"
  3.          tabindex="-1"
  4.          role="dialog">
  5.         <div class="modal-dialog"
  6.              role="document">
  7.             <div class="modal-content">
  8.                 <div class="modal-header only-close">
  9.                     {# @deprecated tag:v6.5.0 - h5 will be changed to div because it causes incorrect semantics on all pages which include pseudo-modal.html.twig #}
  10.                     <div class="modal-title js-pseudo-modal-template-title-element h5"></div>
  11.                     <button type="button"
  12.                             class="{{ modalCloseBtnClass }} close"
  13.                     {{ dataBsDismissAttr }}="modal"
  14.                     aria-label="Close">
  15.                     {% block product_detail_zoom_modal_close_button_content %}
  16.                         {# @deprecated tag:v6.5.0 - Bootstrap v5 creates "x" symbol automatically via SVG background #}
  17.                         {% if not feature('v6.5.0.0') %}
  18.                             <span aria-hidden="true">
  19.                                 {% sw_icon 'x' style {
  20.                                     'size': 'sm'
  21.                                 } %}
  22.                             </span>
  23.                         {% endif %}
  24.                     {% endblock %}
  25.                     </button>
  26.                 </div>
  27.                 <div class="modal-body js-pseudo-modal-template-content-element">
  28.                 </div>
  29.             </div>
  30.         </div>
  31.     </div>
  32. </div>