1234567891011121314151617181920212223242526 |
- <!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 + '/dll/dll.css'}" rel="stylesheet">
- <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 + '/dll/dll.js'}"></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>
|