我对 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>
以适应我想要的布局,但是当我进入管理面板时,我在任何地方都找不到对我的布局的任何引用?
有什么想法可以将我的自定义主题文件夹中的布局放到自定义页面上吗?