search.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>阿凡提-搜索页</title>
  8. <link th:href="${portalHost+'/dll/dll.css'}" rel="stylesheet">
  9. <link th:href="${portalHost+'/vendors.css'}" rel="stylesheet">
  10. <link th:href="${portalHost+'/search.css'}" rel="stylesheet"></head>
  11. </head>
  12. <body>
  13. <div th:replace="common::nav('','adviserDetail')"></div>
  14. <!-- <div class="carousel">
  15. <img th:src="${portalHost+'/img/patent/patent_banners.jpg'}" alt="First slide">
  16. </div> -->
  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="title">
  30. 为您找到下列符合条件的信息:
  31. </div>
  32. <div class="cont">
  33. </div>
  34. <div class="pagination_box">
  35. <nav aria-label="Page navigation" class="clearfix">
  36. <ul class="pagination">
  37. <li class="pagePre">
  38. <a href="#" aria-label="Previous">
  39. <span aria-hidden="true">首页</span>
  40. </a>
  41. </li>
  42. <li class="pageNumber"><a href="#" value="1">1</a></li>
  43. <li class="pageNext">
  44. <a href="#" aria-label="Next">
  45. <span aria-hidden="true">末页</span>
  46. </a>
  47. </li>
  48. </ul>
  49. <div class="inp">
  50. <input type="text" class=""><button class="btn btn-default">跳转</button>
  51. </div>
  52. <span class="totalCount">共0条数据</span>
  53. </nav>
  54. </div>
  55. <footer>
  56. <div th:replace="common::copyright"></div>
  57. <div th:replace="common::login"></div>
  58. </footer>
  59. <div th:replace="common::footer(~{::script})">
  60. <script type="text/javascript" th:src="${portalHost + '/dll/dll.js'}"></script>
  61. <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
  62. <script type="text/javascript" th:src="${portalHost+'/search.js'}"></script>
  63. </div>
  64. </body>
  65. </html>