Okay, to include a page in another page I need <ui:include src="pageName"/>
tag. But if i want to include only a portion of a page?
Let me explain:
I have a template that has the tag <ui:insert name="body"/>
and other <ui:insert.../>
tags.
A page, List.xhtml, uses this template and, of course, fills up ALL the template tags. Now, in another page, named Create.xhtml (that uses the same template), at a certain point, i want to put ONLY the body tag content of List.xhtml, not other tags. Is it possible?
Thank you for you answers.