search.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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+'/vendors.css'}" rel="stylesheet">
  9. <link th:href="${portalHost+'/search.css'}" rel="stylesheet"></head>
  10. </head>
  11. <body>
  12. <div th:replace="common::nav('','adviserDetail')"></div>
  13. <!-- <div class="carousel">
  14. <img th:src="${portalHost+'/img/patent/patent_banners.jpg'}" alt="First slide">
  15. </div> -->
  16. <div class="indexSearch">
  17. <div class="search-inp">
  18. <div class="input-group">
  19. <input type="text" class="form-control demandSearch" placeholder="请输入关键字">
  20. <span class="input-group-btn">
  21. <button class="btn btn-default searchBtn" type="button">
  22. <img th:src="${portalHost} +'/img/newMenu/search-icon.jpg'" alt=""> 搜索
  23. </button>
  24. </span>
  25. </div>
  26. </div>
  27. </div>
  28. <div class="title">
  29. 为您找到下列符合条件的信息:
  30. </div>
  31. <div class="cont">
  32. </div>
  33. <div class="pagination_box">
  34. <nav aria-label="Page navigation" class="clearfix">
  35. <ul class="pagination">
  36. <li class="pagePre">
  37. <a href="#" aria-label="Previous">
  38. <span aria-hidden="true">首页</span>
  39. </a>
  40. </li>
  41. <li class="pageNumber"><a href="#" value="1">1</a></li>
  42. <li class="pageNext">
  43. <a href="#" aria-label="Next">
  44. <span aria-hidden="true">末页</span>
  45. </a>
  46. </li>
  47. </ul>
  48. <div class="inp">
  49. <input type="text" class=""><button class="btn btn-default">跳转</button>
  50. </div>
  51. <span class="totalCount">共0条数据</span>
  52. </nav>
  53. </div>
  54. <footer>
  55. <div th:replace="common::copyright"></div>
  56. <div th:replace="common::login"></div>
  57. </footer>
  58. <div th:replace="common::footer(~{::script})">
  59. <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
  60. <script type="text/javascript" th:src="${portalHost+'/search.js'}"></script>
  61. </div>
  62. </body>
  63. </html>