custom/plugins/DmfManuTheme/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.     {% endblock %}
  17.     {% block page_checkout_additional %}{% endblock %}
  18.     {% block page_checkout_aside %}
  19.         <div class="col-md-12 col-lg-4 ml-auto checkout-right{% if block('page_checkout_additional')|trim %}checkout-aside-no-offset{% endif %}">
  20.             {% block page_checkout_aside_container %}
  21.                 <div class="checkout-aside-container{% if theme_config('dmf-cart-checkout-aside-container-position') == "sticky" %} is-sticky{% else %} h-100 d-flex flex-column justify-content-{{ theme_config('dmf-cart-checkout-aside-container-position') }}{% endif %}">
  22.                     {% block page_checkout_aside_checkout_btn %}
  23.                     {% endblock %}
  24.                     {% block page_checkout_aside_summary %}
  25.                         {{ parent() }}
  26.                     {% endblock %}
  27.                     {% block page_checkout_aside_actions %}{% endblock %}
  28.                 </div>
  29.             {% endblock %}
  30.         </div>
  31.     {% endblock %}
  32.     {% block page_checkout_bottom_actions %}{% endblock %}
  33.     </div>
  34. {% endblock %}