policyList.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 + '/thinkTank/policyList.css'}" rel="stylesheet">
  8. </head>
  9. <body>
  10. <div th:replace="common::nav('thinkTank','policyList')"></div>
  11. <!--banner-->
  12. <div class="banner">
  13. <img th:src="${portalHost + '/img/newMenu/policyBanner.png'}" alt=""/>
  14. </div>
  15. <!--主体内容区域开始-->
  16. <div class="container">
  17. <div class="indexSearch">
  18. <div class="search-inp">
  19. <div class="input-group">
  20. <input type="text" class="form-control demandSearch" placeholder="请输入关键字">
  21. <span class="input-group-btn">
  22. <button class="btn btn-default searchBtn" type="button">
  23. <img th:src="${portalHost + '/img/newMenu/search-icon.jpg'}" alt=""> 搜索
  24. </button>
  25. </span>
  26. </div>
  27. </div>
  28. </div>
  29. <div class="policyContent">
  30. <div class="type">
  31. <p>类型</p>
  32. <ol>
  33. <li value="">不限</li>
  34. <li value="1">政策</li>
  35. <li value="0">资讯</li>
  36. <li value='99'>技淘观点</li>
  37. <li value='98'>知产百科</li>
  38. </ol>
  39. </div>
  40. <div class="area">
  41. <p>地区</p>
  42. <ol>
  43. </ol>
  44. <span class="more">更多+</span>
  45. </div>
  46. </div>
  47. <div class="listContent">
  48. <div class="newLsit">
  49. <ul>
  50. </ul>
  51. <div class="pagination_box">
  52. <nav aria-label="Page navigation" class="clearfix">
  53. <ul class="pagination">
  54. <li class="pagePre">
  55. <a href="#" aria-label="Previous">
  56. <span aria-hidden="true">首页</span>
  57. </a>
  58. </li>
  59. <li class="pageNumber"><a href="#" value="1">1</a></li>
  60. <li class="pageNext">
  61. <a href="#" aria-label="Next">
  62. <span aria-hidden="true">末页</span>
  63. </a>
  64. </li>
  65. </ul>
  66. <div class="inp">
  67. <input type="text" class=""><button class="btn btn-default">跳转</button>
  68. </div>
  69. <span class="totalCount">共0条数据</span>
  70. </nav>
  71. </div>
  72. </div>
  73. <div class="hotNew">
  74. <p><span>热点资讯</span></p>
  75. <ul>
  76. <li th:each="news:${newsList}">
  77. <a th:href="@{/portal/news/newsDetail(id=${news.id})}">
  78. <p th:text="${#strings.abbreviate(news.title,18)}"></p>
  79. <time th:text="${news.createTimeFormattedDate}"></time>
  80. </a>
  81. </li>
  82. </ul>
  83. </div>
  84. </div>
  85. </div>
  86. <!--主体内容区域结束-->
  87. <footer>
  88. <div th:replace="common::copyright"></div>
  89. <div th:replace="common::login"></div>
  90. </footer>
  91. <div th:replace="common::footer(~{::script})">
  92. <script type="text/javascript" th:src="${portalHost + '/dll/dll.js'}"></script>
  93. <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
  94. <script type="text/javascript" th:src="${portalHost + '/thinkTank/policyList.js'}"></script>
  95. </div>
  96. </body>
  97. </html>