tiles.xml

31 lines | 1.045 kB Blame History Raw Download
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE tiles-definitions PUBLIC
       "-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN"
       "http://tiles.apache.org/dtds/tiles-config_2_0.dtd">

<tiles-definitions>

	<!-- ABSTRACT PAGE TEMPLATES -->
	
	<definition name="page" template="/WEB-INF/layouts/page.jsp"/>

	<!-- PAGES -->
	
	<definition name="home" extends="page">
		<put-attribute name="title" value="Welcome to Petclinic" type="string" />
		<put-attribute name="content" value="/WEB-INF/home.jsp" type="template" />
	</definition>

	<!-- APPOINTMENTS PAGES -->
	<definition name="appointments" extends="page">
		<put-attribute name="title" value="Appointment" type="string" />
		<put-attribute name="content" value="/WEB-INF/appointments/calendar.jsp" type="template" />
	</definition>
	
	<!-- OWNERS PAGES -->
	<definition name="owners" extends="page">
		<put-attribute name="title" value="Owner Search" type="string" />
		<put-attribute name="content" value="/WEB-INF/owners/search.jsp" type="template" />
	</definition>	

</tiles-definitions>