Details
diff --git a/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/appointments/calendar.jsp b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/appointments/calendar.jsp
new file mode 100644
index 0000000..692d0bb
--- /dev/null
+++ b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/appointments/calendar.jsp
@@ -0,0 +1,2 @@
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<h2>Appointment Calendar</h2>
\ No newline at end of file
diff --git a/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/owners/search.jsp b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/owners/search.jsp
new file mode 100644
index 0000000..f098b9d
--- /dev/null
+++ b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/owners/search.jsp
@@ -0,0 +1,2 @@
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<h2>Search Owners</h2>
\ No newline at end of file
diff --git a/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/tiles.xml b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/tiles.xml
index 92a429f..64d5e66 100644
--- a/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/tiles.xml
+++ b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/tiles.xml
@@ -13,9 +13,19 @@
<definition name="home" extends="page">
<put-attribute name="title" value="Welcome to Petclinic" type="string" />
- <put-attribute name="content" value="/WEB-INF/home.jsp" />
+ <put-attribute name="content" value="/WEB-INF/home.jsp" type="template" />
</definition>
- <!-- OWNER PAGES -->
+ <!-- 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>
\ No newline at end of file