27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
|
|
|
<!DOCTYPE tiles-definitions PUBLIC
|
|
"-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
|
|
"http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
|
|
|
|
<!-- This is Tiles definition file for tests in coreWeb/tiles. -->
|
|
|
|
<tiles-definitions>
|
|
|
|
<definition name="defaultLayout" path="/tiles/jsp/layout/default.jsp">
|
|
<put name="titleString" value="Sample Page Title" />
|
|
<put name="header" value="/tiles/jsp/components/header.jsp"/>
|
|
<put name="menu" value="/tiles/jsp/components/defaultMenu.jsp"/>
|
|
<put name="panel" value="sidePanel"/>
|
|
<put name="footer" value="/tiles/jsp/components/footer.jsp"/>
|
|
<put name="body" value="/tiles/jsp/components/defaultBody.jsp"/>
|
|
</definition>
|
|
|
|
<!-- using a relative path from the template for the includes -->
|
|
<definition name="sidePanel" path="/tiles/jsp/layout/sidePanel.jsp">
|
|
<put name="panel1" value="../components/panel1.jsp"/>
|
|
<put name="panel2" value="../components/panel2.jsp"/>
|
|
</definition>
|
|
|
|
</tiles-definitions>
|