12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
- <!DOCTYPE html>
- <html>
- <head>
- <jsp:include page="../common/common-meta-include.jsp"></jsp:include>
- <jsp:include page="../common/common-js-include.jsp"></jsp:include>
- <jsp:include page="../common/common-css-include.jsp"></jsp:include>
- <!--[if lt IE 9]>
- <script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
- <script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
- <![endif]-->
- <style type="text/css">
- .container {
- width: 80%;
- margin-top: 50px;
- margin-left: 10%;
- background-color: #ecf5f5;
- min-height: 90%;
- }
- .title {
- text-align: center;
- padding-top: 50px;
- font-size: 30px;
- }
- .publishDate{
- float: right;
- padding-right: 15%;
- padding-top: 20px;
- }
- .content{
- width: 80%;
- margin-top: 50px;
- font-size: 20px;
- margin-left: 10%;
- background-color: aliceblue;
- min-height: 800px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="layuimini-main">
- <div class="layui-form" lay-filter="formData">
- <h2 class="title">${notice.title }</h2>
- <div class="publishDate">
- <label>发布时间:<fmt:formatDate value="${notice.publishDate }" pattern="yyyy-MM-dd HH:mm:ss"/></label>
- </div>
- <div class="content">
- ${notice.content}
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|