magento-hackathon / m2-content-provisioning

Configure CMS (pages or block) entries via XML and define how them should be deployed.
MIT License
45 stars 19 forks source link

full-width not supported in the provisioning xml file #31

Closed LukasKiederle closed 3 years ago

LukasKiederle commented 4 years ago

Describe the bug It is not possible to provision a page with the layout configuration cms-full-width.

To Reproduce

  1. Create a html file which is used for the content of a page
  2. Add the code for the html file to the provisioning-xml file with the the layout cms-full-width
    <page key="test.homepage" identifier="home" maintained="true" active="true">
        <title>Homepage</title>
        <content type="file">Test_Theme::Content/pages/content/homepage.html</content>
        <design>
            <layout>cms-full-width</layout>
        </design>
    </page>
  3. run bin/magento setup:upgrade

Expected behavior Page is correctly provisioned with the layout cms-full-width.