newsDetailApp.html 1.0 KB

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
  3. <head th:replace="common::header(~{::title},~{::link})">
  4. <title>阿凡提-新闻详情</title>
  5. <link th:href="${portalHost + '/dll/dll.css'}" rel="stylesheet">
  6. <link th:href="${portalHost + '/vendors.css'}" rel="stylesheet">
  7. <link th:href="${portalHost + '/news/newsDetailApp.css'}" rel="stylesheet">
  8. </head>
  9. <body>
  10. <div class="container newsDetails_content">
  11. <div class="newsDetail_content">
  12. <h4></h4>
  13. <p class="from_info">来源:<span class="from_web"></span>时间:<span class="from_date"></span></p>
  14. <div id="content_container">
  15. </div>
  16. </div>
  17. </div>
  18. <div th:replace="common::footer(~{::script})">
  19. <script type="text/javascript" th:src="${portalHost + '/dll/dll.js'}"></script>
  20. <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
  21. <script type="text/javascript" th:src="${portalHost + '/news/newsDetailApp.js'}"></script>
  22. </div>
  23. </body>
  24. </html>