123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
- <update handle="multishipping_checkout"/>
- <update handle="checkout_cart_item_renderers"/>
- <body>
- <referenceBlock name="page.main.title">
- <action method="setPageTitle">
- <argument translate="true" name="label" xsi:type="string">Ship to Multiple Addresses</argument>
- </action>
- </referenceBlock>
- <referenceContainer name="content">
- <block class="Magento\Multishipping\Block\Checkout\Addresses" name="checkout_addresses" template="Magento_Multishipping::checkout/addresses.phtml" cacheable="false">
- <arguments>
- <argument name="renderer_template" xsi:type="string">Magento_Multishipping::checkout/item/default.phtml</argument>
- </arguments>
- <block class="Magento\Framework\View\Element\RendererList" name="checkout.cart.item.renderers" as="renderer.list"/>
- </block>
- </referenceContainer>
- <block class="Magento\Framework\View\Element\Template" name="additional.product.info" template="Magento_Theme::template.phtml"/>
- <referenceBlock name="head.components">
- <block class="Magento\Framework\View\Element\Template" name="multishipping_checkout_addresses_page_head_components" template="Magento_Multishipping::js/components.phtml"/>
- </referenceBlock>
- </body>
- </page>
|