diff --git a/apps/showcase/src/main/webapp/tiles/body.jsp b/apps/showcase/src/main/webapp/tiles/body.jsp
index 11057226c..da89efdbf 100644
--- a/apps/showcase/src/main/webapp/tiles/body.jsp
+++ b/apps/showcase/src/main/webapp/tiles/body.jsp
@@ -10,6 +10,9 @@
View FreeMarker Example
+
+ View Example with a FreeMarker Layout
+
\ No newline at end of file
diff --git a/apps/showcase/src/main/webapp/tiles/layout.ftl b/apps/showcase/src/main/webapp/tiles/layout.ftl
new file mode 100644
index 000000000..010d56012
--- /dev/null
+++ b/apps/showcase/src/main/webapp/tiles/layout.ftl
@@ -0,0 +1,12 @@
+<#assign tiles=JspTaglibs["http://tiles.apache.org/tags-tiles"]>
+<@tiles.importAttribute name="title" scope="request"/>
+
+ <@tiles.getAsString name="title"/>
+
+ <@tiles.insertAttribute name="header"/>
+
+ <@tiles.insertAttribute name="body"/>
+
+ Notice that this is a layout made in FreeMarker
+
+
diff --git a/apps/showcase/src/main/webapp/tiles/layout.jsp b/apps/showcase/src/main/webapp/tiles/layout.jsp
index c3724018a..9caca1183 100644
--- a/apps/showcase/src/main/webapp/tiles/layout.jsp
+++ b/apps/showcase/src/main/webapp/tiles/layout.jsp
@@ -11,5 +11,7 @@
+
+ Notice that this is a layout made in JSP