wubb 8 years ago
parent
commit
2a50bbb49e
1 changed files with 24 additions and 0 deletions
  1. 24 0
      src/main/webapp/WEB-INF/views/portal/news/newsDetailApp.html

+ 24 - 0
src/main/webapp/WEB-INF/views/portal/news/newsDetailApp.html

@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
+
+<head th:replace="common::header(~{::title},~{::link})">
+	<title>新闻详情</title>
+	<link th:href="${portalHost + '/vendors.css'}" rel="stylesheet">
+	<link th:href="${portalHost + '/news/newsDetailApp.css'}" rel="stylesheet">
+</head>
+
+<body>
+	<div class="container newsDetails_content">
+		<div class="newsDetail_content">
+			<h4></h4>
+			<p class="from_info">来源:<span class="from_web"></span>时间:<span class="from_date"></span></p>
+			<div id="content_container">
+			</div>
+		</div>
+	</div>
+	<div th:replace="common::footer(~{::script})">
+		<script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
+		<script type="text/javascript" th:src="${portalHost + '/news/newsDetailApp.js'}"></script>
+	</div>
+</body>
+</html>