admin-2columns-left.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_layout.xsd">
  9. <container name="root">
  10. <container name="backend.page">
  11. <container name="after.body.start" as="after.body.start" label="Page Top" before="-"/>
  12. <container name="page.wrapper" as="page_wrapper" htmlTag="div" htmlClass="page-wrapper">
  13. <container name="notices.wrapper" before="-" htmlClass="notices-wrapper" htmlTag="div">
  14. <container name="notifications" as="notifications" />
  15. <container name="notification.window" as="notification_window" before="-"/>
  16. <container name="global.notices" as="global_notices" after="notification.window"/>
  17. </container>
  18. <container name="header" htmlTag="header" htmlClass="page-header"/>
  19. <container name="page.menu" as="page.menu" after="header"/>
  20. <container name="page.breadcrumbs" as="page.breadcrumbs"/>
  21. <container name="page.formkey" as="page.formkey"/>
  22. <container name="page.content" as="page_content" htmlTag="main" htmlId="anchor-content" htmlClass="page-content">
  23. <container name="main.top" as="main-top" label="main-top"/>
  24. <container name="page.main.actions" as="page_main_actions" htmlTag="div" htmlClass="page-main-actions"/>
  25. <container name="messages.wrapper" as="messages.wrapper" htmlTag="div" htmlId="messages">
  26. <container name="page.messages" as="page.messages"/>
  27. </container>
  28. <container name="page.main.container" as="page_main_container" htmlId="page:main-container" htmlTag="div" htmlClass="page-columns">
  29. <container name="main.col" as="main-col" htmlId="container" htmlTag="div" htmlClass="main-col">
  30. <container name="admin.scope.col.wrap" as="admin-scope-col-wrap" htmlTag="div" htmlClass="admin__scope-old"> <!-- ToDo UI: remove this wrapper remove with old styles removal -->
  31. <container name="content" as="content"/>
  32. </container>
  33. </container>
  34. <container name="side.col" as="side-col" after="main.col" htmlId="page:left" htmlTag="div" htmlClass="side-col">
  35. <container name="left" as="left"/>
  36. </container>
  37. </container>
  38. </container>
  39. <container name="js" as="js" label="JavaScript"/>
  40. <container htmlTag="footer" htmlClass="page-footer">
  41. <container name="footer" htmlTag="div" htmlClass="page-footer-content row" />
  42. </container>
  43. </container>
  44. <container name="before.body.end" as="before_body_end" label="Before Body End" after="-"/>
  45. </container>
  46. </container>
  47. </layout>