custom/plugins/tad-theme/src/Resources/views/storefront/page/checkout/_page.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/checkout/_page.html.twig' %}
  2. {% block page_checkout_container %}
  3.     {% block base_flashbags_checkout %}
  4.         <div class="flashbags">
  5.             {% for type, messages in app.flashes %}
  6.                 {% sw_include '@Storefront/storefront/utilities/alert.html.twig' with { type: type, list: messages } %}
  7.             {% endfor %}
  8.         </div>
  9.     {% endblock %}<div class="row checkout-container">
  10.     {% block page_checkout_container_checkout_btn %}
  11.     {% endblock %}
  12.     {% block page_checkout_main %}
  13.         <div class="col-md-12 col-lg-7 checkout-left">
  14.             {% block page_checkout_main_content %}{% endblock %}
  15.         </div>
  16.         
  17.     {% endblock %}
  18.     {% block page_checkout_additional %}{% endblock %}
  19.     {% block page_checkout_aside %}
  20.         <div class="col-md-12 col-lg-4 ml-auto checkout-right{% if block('page_checkout_additional')|trim %}checkout-aside-no-offset{% endif %}">
  21.             {% block page_checkout_aside_container %}
  22.                 <div class="checkout-aside-container{% if theme_config('tad-cart-checkout-aside-container-position') == "sticky" %} is-sticky{% else %} h-100 d-flex flex-column justify-content-{{ theme_config('tad-cart-checkout-aside-container-position') }}{% endif %}">
  23.                    
  24.                     {% block page_checkout_aside_summary %}
  25.                         {{ parent() }} 
  26.                     {% endblock %}
  27.                     {% block page_checkout_aside_actions %}{% endblock %}
  28.                     
  29.                     <div class="checkout-aside-action">
  30.                      <button class="btn btn-block btn-md btn-light delivery-btn" id="delivery-note">    <p> Lieferdauer </p>
  31.          </button>    {% block page_checkout_bottom_actions %}{% endblock %}      
  32.                     </div>
  33.                 
  34.                 </div>
  35.        
  36.             {% endblock %}
  37.         </div>
  38.     {% endblock %}
  39.   {#% block page_checkout_bottom_actions %}{% endblock %#}    
  40. {% endblock %}