123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!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>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>阿凡提-搜索页</title>
- <link th:href="${portalHost+'/dll/dll.css'}" rel="stylesheet">
- <link th:href="${portalHost+'/vendors.css'}" rel="stylesheet">
- <link th:href="${portalHost+'/search.css'}" rel="stylesheet"></head>
- </head>
- <body>
- <div th:replace="common::nav('','adviserDetail')"></div>
- <!-- <div class="carousel">
- <img th:src="${portalHost+'/img/patent/patent_banners.jpg'}" alt="First slide">
- </div> -->
- <div class="indexSearch">
- <div class="search-inp">
- <div class="input-group">
- <input type="text" class="form-control demandSearch" placeholder="请输入关键字">
- <span class="input-group-btn">
- <button class="btn btn-default searchBtn" type="button">
- <img th:src="${portalHost} +'/img/newMenu/search-icon.jpg'" alt="">
- </button>
- </span>
- </div>
- </div>
- </div>
-
- <div class="title">
- 为您找到下列符合条件的信息:
- </div>
- <div class="cont">
-
- </div>
- <div class="pagination_box">
- <nav aria-label="Page navigation" class="clearfix">
- <ul class="pagination">
- <li class="pagePre">
- <a href="#" aria-label="Previous">
- <span aria-hidden="true">首页</span>
- </a>
- </li>
- <li class="pageNumber"><a href="#" value="1">1</a></li>
- <li class="pageNext">
- <a href="#" aria-label="Next">
- <span aria-hidden="true">末页</span>
- </a>
- </li>
- </ul>
- <div class="inp">
- <input type="text" class=""><button class="btn btn-default">跳转</button>
- </div>
- <span class="totalCount">共0条数据</span>
- </nav>
- </div>
- <footer>
- <div th:replace="common::copyright"></div>
- <div th:replace="common::login"></div>
- </footer>
- <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+'/search.js'}"></script>
- </div>
- </body>
- </html>
|