empty.jsp 355 B

12345678910111213
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %>
  3. <!doctype html>
  4. <html>
  5. <head>
  6. <title><tiles:getAsString name="title" /></title>
  7. <tiles:insertAttribute name="include" />
  8. </head>
  9. <body>
  10. <tiles:insertAttribute name="content" />
  11. </body>
  12. </html>