12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!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 th:replace="common::header(~{::title},~{::link})">
- <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+'/newMenu/adviserList.css'}" rel="stylesheet"></head>
- <body>
- <div th:replace="common::nav('','adviserDetail')"></div>
- <!-- 中间内容开始 -->
- <div class="container">
- <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="sort">
- <a class="relTime">发布时间</a><a class="colNumber">好评率</a>
- </div>
- <div class="adviserList">
- <ul>
-
- </ul>
- </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>跳转</button>
- </div>
- <span class="totalCount">共0条数据</span>
- </nav>
- </div>
- </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 + '/newMenu/adviserList.js'}"></script>
- <script> document.querySelectorAll(".nav>ul>li")[3].className="active" </script>
- </div>
- </body>
- </html>
|