Magento does not load layout

-1

Following the Magento documentation, I can not change the contents of a custom controller. It looks like the .xml file is not read but it does not return any error and the route is working perfectly mymagento.com/default/home/index

- app
-- code
--- local
---- MarceloWeb
----- Default
------ controllers
------- HomeController.php
------ etc
------- config.xml

HomeController.php

class MarceloWeb_Default_HomeController extends Mage_Core_Controller_Front_Action
{
    public function indexAction()
    {
        $this->loadLayout();
        $this->renderLayout();
    }
}

config.xml          

    <modules>
        <MarceloWeb_Default>
            <version>0.0.1</version>
        </MarceloWeb_Default>
    </modules>

    <frontend>
        <routers>
            <MarceloWeb_Default>
                <use>standard</use>
                <args>
                    <module>MarceloWeb_Default</module>
                    <frontName>default</frontName>
                </args>
            </MarceloWeb_Default>
        </routers>

        <layout>
            <updates>
                <default>
                    <file>home.xml</file>
                </default>
            </updates>
        </layout>
    </frontend>

</config>


- app
-- design
--- frontend
---- default
----- default
------ layout
------- home.xml
------ template
------- abc
-------- home.phtml

home.xml

<?xml version="1.0" ?>
<!-- Root node for Magento layout configuration -->
<layout version="0.1.0">
    <!--Page handle -->
    <default_home_index>
        <!-- reference tag specifies the block where we a going to add child block -->
        <reference name="content">
            <!-- Our page content block -->
            <block type="core/template" name="home" template="abc/home.phtml"></block>
        </reference>
    </default_home_index>
</layout>

home.phtml

< p >Hello World!< / p>
    
asked by anonymous 29.08.2014 / 21:58

1 answer

0

Have you ever tried to call an existing block to see if it's at least calling home.xml? so it looks like it might be the references inside the layout that are wrong

    
30.08.2014 / 01:43