我對Magento非常陌生,從頭開始構建自定義主題,深入研究。在Magento中,如何使用自定義主題文件夾中的佈局而不是基礎文件夾?
我已將app/design/frontend
和skin/frontend
的文件夾添加到我的自定義主題中,並將所有資源添加到皮膚文件中。
我已經然後從app/design/frontend/base
複製的佈局文件夾,並改變了page.xml
到:
<?xml version="1.0"?>
<layout version="0.1.0">
<default translate="label" module="page">
<label>All Pages</label>
<block type="page/html" name="root" output="toHtml" template="page/default.phtml">
<block type="page/html_head" name="head" as="head">
<action method="addCss"><stylesheet>css/reset.css</stylesheet></action>
<action method="addCss"><stylesheet>css/webfonts.css</stylesheet></action>
<action method="addCss"><stylesheet>css/jqzoom.css</stylesheet></action>
<action method="addCss"><stylesheet>css/core.css</stylesheet></action>
</block>
<block type="page/html_header" name="header" as="header">
<block type="page/top_nav" name="top.nav" as="topNav"/>
<block type="page/top_cart" name="top.cart" as="topCart"/>
</block>
<block type="page/html_nav" name="nav" as="nav" template="page/html/nav.phtml"/>
<block type="page/html_aside" name="aside" as="aside" template="page/html/aside.phtml"/>
<block type="core/text_list" name="content" as="content"/>
<block type="page/html_newsletter" name="newsletter" as="newsletter" template="page/html/newsletter.phtml"/>
<block type="page/html_features" name="features" as="features" template="page/html/features.phtml"/>
<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml"/>
</block>
</default>
</layout>
,以配合我想要的佈局,但是當我進入管理面板,我找不到任何引用我的佈局在哪裏?
任何想法如何讓我的自定義主題文件夾中的佈局到自定義頁面上?