123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!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})">
- <title>阿凡提-智政--我的技术和科技服务交易平台</title>
- <link th:href="${portalHost + '/dll/dll.css'}" rel="stylesheet">
- <link th:href="${portalHost + '/vendors.css'}" rel="stylesheet">
- <link th:href="${portalHost + '/thinkTank/policyList.css'}" rel="stylesheet">
- </head>
- <body>
- <div th:replace="common::nav('thinkTank','policyList')"></div>
- <!--banner-->
- <div class="banner">
- <img th:src="${portalHost + '/img/newMenu/policyBanner.png'}" alt=""/>
- </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="policyContent">
- <div class="type">
- <p>类型</p>
- <ol>
- <li value="">不限</li>
- <li value="1">政策</li>
- <li value="0">资讯</li>
- <li value='99'>技淘观点</li>
- <li value='98'>知产百科</li>
- </ol>
- </div>
- <div class="area">
- <p>地区</p>
- <ol>
-
- </ol>
- <span class="more">更多+</span>
- </div>
- </div>
- <div class="listContent">
- <div class="newLsit">
- <ul>
-
- </ul>
- <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>
- </div>
- <div class="hotNew">
- <p><span>热点资讯</span></p>
- <ul>
- <li th:each="news:${newsList}">
- <a th:href="@{/portal/news/newsDetail(id=${news.id})}">
- <p th:text="${#strings.abbreviate(news.title,18)}"></p>
- <time th:text="${news.createTimeFormattedDate}"></time>
- </a>
- </li>
- </ul>
- </div>
- </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 + '/thinkTank/policyList.js'}"></script>
- </div>
- </body>
- </html>
|