<c:template xmlns:c="core" xmlns:layout="layout">
    <layout:use template="/test-templates/layout-default.rhtml" show-header="$false">
        <layout:put into="body">BODY CONTENT</layout:put>
        <layout:put into="footer">FOOTER CONTENT</layout:put>
    </layout:use>
    <layout:use template="/test-templates/layout-default.rhtml" show-header="$true">
        <layout:put into="header">HEADER CONTENT</layout:put>
        <layout:put into="body">BODY CONTENT</layout:put>
        <layout:put into="footer">FOOTER CONTENT</layout:put>
    </layout:use>
    <layout:use template="/test-templates/layout-default.rhtml" show-header="$true">
        <layout:put into="header" value="VALUE HEADER"/>
        <layout:put into="body">BODY CONTENT</layout:put>
        <layout:put into="footer">FOOTER CONTENT</layout:put>
    </layout:use>
    <layout:use template="/test-templates/layout-default.rhtml" show-header="$true">
        <layout:put into="body">BODY CONTENT</layout:put>
        <layout:put into="footer">FOOTER CONTENT</layout:put>
    </layout:use>
</c:template>