policyDocumentTemplate.jsp 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <%@ taglib prefix="shiro" uri="http://shiro.apache.org/tags"%>
  2. <%@ page language="java" contentType="text/html; charset=UTF-8"
  3. pageEncoding="UTF-8"%>
  4. <%@ page isELIgnored="false"%>
  5. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  6. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  7. <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta charset="utf-8">
  12. <meta http-equiv="content-type" content="text/html;charset=utf-8">
  13. <meta name="viewport"
  14. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  15. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  16. <link rel="stylesheet" type="text/css" href="${WebSite.asset}/css/style.css?version=${version}" media="all"/>
  17. <link rel="stylesheet" type="text/css" href="${WebSite.asset}/lib/layui-v2.6.5/css/layui.css?version=${version}" media="all"/>
  18. <link rel="stylesheet" type="text/css" href="${WebSite.asset}/css/style.css?version=${version}" media="all"/>
  19. <link rel="stylesheet" type="text/css" href="${WebSite.asset}/lib/font-awesome-4.7.0/css/font-awesome.min.css" media="all">
  20. <title>${title}</title>
  21. <style>
  22. * {
  23. font-family: '';
  24. }
  25. .detail_content {
  26. width: 1200px;
  27. margin: 20px auto;
  28. padding: 20px;
  29. box-sizing: border-box;
  30. background: #fff;
  31. }
  32. .detail_title {
  33. width: 100%;
  34. margin: 0 auto 10px;
  35. text-align: center;
  36. font-size: 28px;
  37. font-weight: 700;
  38. }
  39. .detail_subTitle {
  40. width: 100%;
  41. margin: 0 auto;
  42. padding: 0 5%;
  43. box-sizing: border-box;
  44. text-align: center;
  45. font-size: 18px;
  46. }
  47. .detail_time {
  48. width: 100%;
  49. height: 35px;
  50. margin: 0 auto 15px;
  51. padding: 0 10px;
  52. box-sizing: border-box;
  53. line-height: 35px;
  54. border-bottom: 1px solid #e5e5e5;
  55. color: #999;
  56. }
  57. .detail_value {
  58. margin: 0 auto;
  59. }
  60. </style>
  61. </head>
  62. <body>
  63. <div class="detail_content">
  64. <div class="detail_title">${title }</div>
  65. <div class="detail_subTitle">——${titleSub }</div>
  66. <div class="detail_time">发布时间:${publishDate }</div>
  67. <div class="detail_value">${content }</div>
  68. </div>
  69. </body>
  70. </html>