Jsp模板.jsp 499 B

1234567891011121314151617181920212223
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <html>
  3. <head>
  4. <%@ include file="header.jspf" %>
  5. </head>
  6. <body>
  7. <div class="container">
  8. <%@ include file="head.jsp" %>
  9. <div class="row" style="margin-top: 70px">
  10. <div class="col-sm-2">
  11. <%@ include file="left.jsp" %>
  12. </div>
  13. <div class="col-sm-10">
  14. 我的代码区域
  15. </div>
  16. </div>
  17. </div>
  18. <%@ include file="buttom.jsp" %>
  19. </body>
  20. </html>