custom/plugins/ChespackTheme/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. {# Adjusted layout #}
  3. {% block page_checkout_main %}
  4.     {# Moved to the main container #}
  5.     {% block base_flashbags_checkout %}{% endblock %}
  6.     {% block page_checkout_main_content %}{% endblock %}
  7. {% endblock %}
  8. {# Added free shipping container #}
  9. {% block page_checkout_aside_summary %}
  10.     {{ parent() }}
  11.     {% block page_checkout_aside_free_shipping %}
  12.         {% sw_include '@Storefront/storefront/component/checkout/free-shipping-indicator.html.twig' %}
  13.     {% endblock %}
  14. {% endblock %}