2007/5/12, Garrett <[EMAIL PROTECTED]>:
<definition name="main.layout" template="/tiles/main-layout.jsp">
<put-attribute name="head" value="head.content"/>
<put-attribute name="body" value="body.content"/>
</definition>
You forgot to put the EXTENDED definitions as attribute values!
Change it this way:
<definition name="main.layout" template="/tiles/main-layout.jsp">
<put-attribute name="head" value="site.index.head.content"/>
<put-attribute name="body" value="site.index.body.content
"/>
</definition>
Antonio