From d8014ae193f5190625a338c4d7faf095ddcd65bd Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Wed, 6 May 2009 16:37:16 +0000 Subject: [PATCH] petclinic tiles --- .../src/main/webapp/WEB-INF/layouts/page.jsp | 45 +++++++++++++++++++ .../src/main/webapp/WEB-INF/tiles.xml | 21 +++++++++ 2 files changed, 66 insertions(+) create mode 100644 org.springframework.samples.petclinic/src/main/webapp/WEB-INF/layouts/page.jsp create mode 100644 org.springframework.samples.petclinic/src/main/webapp/WEB-INF/tiles.xml diff --git a/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/layouts/page.jsp b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/layouts/page.jsp new file mode 100644 index 000000000..f0a2acda9 --- /dev/null +++ b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/layouts/page.jsp @@ -0,0 +1,45 @@ +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> +<%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %> +<%@ page session="false" %> + + + <tiles:insertAttribute name="title"/> + + + +
+ +
+ +
+ +
+ + \ 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 new file mode 100644 index 000000000..92a429fa9 --- /dev/null +++ b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/tiles.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file