empty.jsp 414 B

1234567891011121314
  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. <tiles:insertAttribute name="include" />
  7. <title><tiles:getAsString name="title" /></title>
  8. </head>
  9. <body>
  10. <div data-role="page" class="ui-noboxshadow">
  11. <tiles:insertAttribute name="content" />
  12. </div>
  13. </body>
  14. </html>