video.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 th:replace="common::header(~{::title},~{::link})">
  4. <meta charset="UTF-8">
  5. <title>阿凡提-技淘视频</title>
  6. <link th:href="${portalHost+'/dll/dll.css'}" rel="stylesheet">
  7. <link th:href="${portalHost+'/vendors.css'}" rel="stylesheet">
  8. <link th:href="${portalHost+'/newMenu/video.css'}" rel="stylesheet">
  9. </head>
  10. <body>
  11. <div th:replace="common::nav('','video')"></div>
  12. <!-- 上面是公共头部 -->
  13. <div class="indexSearch">
  14. <div class="search-inp">
  15. <div class="input-group">
  16. <input type="text" class="form-control demandSearch" placeholder="请输入关键字">
  17. <span class="input-group-btn">
  18. <button class="btn btn-default searchBtn" type="button">
  19. <img th:src="${portalHost+'/img/newMenu/search-icon.jpg'}" alt=""> 搜索
  20. </button>
  21. </span>
  22. </div>
  23. </div>
  24. </div>
  25. <div class="title">
  26. 视频专区
  27. </div>
  28. <div class="contImg">
  29. <ul>
  30. </ul>
  31. </div>
  32. <div class="pagination_box">
  33. <nav aria-label="Page navigation" class="clearfix">
  34. <ul class="pagination">
  35. <li class="pagePre">
  36. <a href="#" aria-label="Previous">
  37. <span aria-hidden="true">首页</span>
  38. </a>
  39. </li>
  40. <li class="pageNumber"><a href="#" value="1">1</a></li>
  41. <li class="pageNext">
  42. <a href="#" aria-label="Next">
  43. <span aria-hidden="true">末页</span>
  44. </a>
  45. </li>
  46. </ul>
  47. <div class="inp">
  48. <input type="text" class=""><button class="btn btn-default">跳转</button>
  49. </div>
  50. <span class="totalCount">共0条数据</span>
  51. </nav>
  52. </div>
  53. <!-- <div class="videoPlay">
  54. <div class="videoTopM">
  55. <span class="glyphicon glyphicon-remove"></span>
  56. <span class="videoPre">播放上一个</span>
  57. <span class="videoNext">播放下一个</span>
  58. <div class="videoList">
  59. <video id="videoAt" controls="true" controlslist="nodownload">
  60. <source src="" type="video/mp4">
  61. </video>
  62. </div>
  63. </div>
  64. </div> -->
  65. <!-- 下面是公共底部 -->
  66. <footer>
  67. <div th:replace="common::copyright"></div>
  68. <div th:replace="common::login"></div>
  69. </footer>
  70. <div th:replace="common::footer(~{::script})">
  71. <script type="text/javascript" th:src="${portalHost + '/dll/dll.js'}"></script>
  72. <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
  73. <script type="text/javascript" th:src="${portalHost+'/newMenu/video.js'}"></script>
  74. </div>
  75. </body>
  76. </html>