123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!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">
- <title>阿凡提-技淘视频</title>
- <link th:href="${portalHost+'/dll/dll.css'}" rel="stylesheet">
- <link th:href="${portalHost+'/vendors.css'}" rel="stylesheet">
- <link th:href="${portalHost+'/newMenu/video.css'}" rel="stylesheet">
- </head>
- <body>
- <div th:replace="common::nav('','video')"></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="contImg">
- <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 class="btn btn-default">跳转</button>
- </div>
- <span class="totalCount">共0条数据</span>
- </nav>
- </div>
- <!-- <div class="videoPlay">
- <div class="videoTopM">
- <span class="glyphicon glyphicon-remove"></span>
- <span class="videoPre">播放上一个</span>
- <span class="videoNext">播放下一个</span>
- <div class="videoList">
- <video id="videoAt" controls="true" controlslist="nodownload">
- <source src="" type="video/mp4">
- </video>
- </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+'/newMenu/video.js'}"></script>
- </div>
- </body>
- </html>
|