videos_detail.liquid 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <!DOCTYPE html>
  2. <html lang="{{site.dist.country_lang }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="robots" content="index, follow">
  7. <meta property="og:locale" content="{{site.dist.country_lang | replace: '-', '_' }}" />
  8. <meta name="author" content="Mietubl">
  9. <meta name="description" content="{{ page.seo_description | strip_html| strip_newlines }}">
  10. <meta name="keywords" content="{{page.seo_keywords}}">
  11. <title>{{page.seo_title}}</title>
  12. {% include '_header_css.liquid' %}
  13. </head>
  14. <body>
  15. <!-- MAIN WRAPPER -->
  16. <div class="body-wrap shop-default shop-cards shop-tech">
  17. <div id="st-container" class="st-container">
  18. <div class="st-pusher">
  19. <div class="st-content">
  20. <div class="st-content-inner">
  21. <!-- HEADER -->
  22. {% include '_header.liquid' %}
  23. <!-- END: HEADER -->
  24. <!-- BREADCRUMB -->
  25. <section class="slice sct-color-1">
  26. <div class="container">
  27. <div class="page-title">
  28. <div class="row align-items-center">
  29. <div class="d-flex justify-content-end col-lg-12 col-12">
  30. {% for breadcrumb in breadcrumbs %}
  31. <h2 class="heading heading-6 text-capitalize strong-500 mb-0">
  32. <a href="{{ breadcrumb.url }}" class="link text-underline--none">
  33. &nbsp;
  34. {% if forloop.index == 1 %}
  35. <!-- 第一个 breadcrumb 使用 ion-ios-home 图标 -->
  36. <i class="ion-ios-home"></i>
  37. {% else %}
  38. <!-- 其它 breadcrumb 使用 ion-ios-arrow-forward 图标 -->
  39. <i class="ion-ios-arrow-forward"></i>
  40. {% endif %}
  41. {{ breadcrumb.name }}
  42. </a>
  43. </h2>
  44. {% endfor %}
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </section>
  50. <!-- END: BREADCRUMB -->
  51. <section class="slice sct-color-1">
  52. <div class="container">
  53. <div class="block block-post">
  54. <div class="block-body block-post-body">
  55. <h1>
  56. {{ video.title | raw }}
  57. </h1>
  58. <div class="d-flex justify-content-center">
  59. <div style="position: relative; width: 90%; padding-top: 56.25%;"> <!-- 16:9 ratio -->
  60. <iframe
  61. src="{{ video.video_url | raw }}"
  62. title="YouTube video player"
  63. frameborder="0"
  64. allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
  65. referrerpolicy="strict-origin-when-cross-origin"
  66. allowfullscreen
  67. style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"
  68. ></iframe>
  69. </div>
  70. </div>
  71. </div>
  72. <!-- Comment form -->
  73. </div>
  74. </div>
  75. </section>
  76. {{ page.page_type }}
  77. {% if page.page_type == 0 %}
  78. <section class="slice sct-color-1">
  79. <div class="container">
  80. <div class="pt-5">
  81. <nav aria-label="Product pagination">
  82. <ul class="pagination pagination--style-2 justify-content-center">
  83. <!-- Previous Page Link -->
  84. {% if paginator.previous_page %}
  85. <li class="page-item">
  86. <a class="page-link" href="{{ paginator.previous_page_url }}" tabindex="-1">Previous</a>
  87. </li>
  88. {% else %}
  89. <li class="page-item disabled">
  90. <a class="page-link" href="#" tabindex="-1">Previous</a>
  91. </li>
  92. {% endif %}
  93. <!-- Next Page Link -->
  94. {% if paginator.next_page %}
  95. <li class="page-item">
  96. <a class="page-link" href="{{ paginator.next_page_url }}">Next</a>
  97. </li>
  98. {% else %}
  99. <li class="page-item disabled">
  100. <a class="page-link" href="#">Next</a>
  101. </li>
  102. {% endif %}
  103. </ul>
  104. </nav>
  105. </div>
  106. </div>
  107. </section>
  108. {% endif %}
  109. <!-- FOOTER -->
  110. {% include '_footer.liquid' %}
  111. </div>
  112. </div>
  113. </div><!-- END: st-pusher -->
  114. </div><!-- END: st-container -->
  115. </div><!-- END: body-wrap -->
  116. <a href="#" class="back-to-top btn-back-to-top"></a>
  117. {% include '_footer_js.liquid' %}
  118. <!-- Isotope -->
  119. <script src="/static/js/isotope.min.js"></script>
  120. <script src="/static/js/imagesloaded.pkgd.min.js"></script>
  121. <!-- Deso Slide -->
  122. <script src="/static/js/jquery.desoslide.min.js"></script>
  123. <script>
  124. $('#slideshow').desoSlide({
  125. thumbs: $('#slideshow_thumbs .swiper-slide > a'),
  126. thumbEvent: 'click',
  127. first: 0,
  128. effect: 'none',
  129. overlay: 'none',
  130. controls: {
  131. show: false,
  132. keys: false
  133. },
  134. });
  135. </script>
  136. </body>
  137. </html>