customer_account_index.xml 1.1 KB

123456789101112131415161718192021
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
  9. <update handle="customer_account"/>
  10. <body>
  11. <referenceBlock name="page.main.title">
  12. <action method="setPageTitle">
  13. <argument translate="true" name="title" xsi:type="string">My Account</argument>
  14. </action>
  15. </referenceBlock>
  16. <referenceContainer name="content">
  17. <block class="Magento\Customer\Block\Account\Dashboard\Info" name="customer_account_dashboard_info" as="info" template="Magento_Customer::account/dashboard/info.phtml" cacheable="false"/>
  18. <block class="Magento\Customer\Block\Account\Dashboard\Address" name="customer_account_dashboard_address" as="address" template="Magento_Customer::account/dashboard/address.phtml" cacheable="false"/>
  19. </referenceContainer>
  20. </body>
  21. </page>