empty.jsp 453 B

123456789101112131415
  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 knuh">
  11. <%@include file="./panel.jsp"%>
  12. <tiles:insertAttribute name="content" />
  13. </div>
  14. </body>
  15. </html>