I have a jsp file with header,footer and body.i want to display the complete page with tiles without splitting the page into header,footer body pages.
here is the tiles definition
<definition name="homepage" template="pages/intro.jsp">
<put-attribute name="header" value="/pages/HomeHead.jsp" />
<put-attribute name="body" value="pages/HomeBody.jsp" />
<put-attribute name="footer" value="/pages/HomeFooter.jsp"/>
</definition>
a single jsp page is split into header.jsp,footer.jsp,body.jsp .can i display the jsp page without splitting into header,footer and body.