videos_categories.liquid 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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="{{ tag.seo_description | strip_html| strip_newlines }}">
  10. <meta name="keywords" content="{{tag.seo_keywords}}">
  11. <title>{{tag.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="row align-items-center">
  54. <div class="col-12" >
  55. <h3 class="heading heading-3 strong-600 text-uppercase mb-0 text-center">{{ tag.name }}</h3>
  56. </div>
  57. </div>
  58. <div class="row cols-md-space cols-sm-space cols-xs-space">
  59. {% for item in videos %}
  60. <div class="col-lg-4 col-wrapper--spaced-y">
  61. <div class="card z-depth-2-top">
  62. <div class="card-image">
  63. <div class="view view-first">
  64. <a href="/videos/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}">
  65. {% assign cover_image_url = item.cover_image %}
  66. {% if cover_image_url %}
  67. {% if cover_image_url contains 'http' %}
  68. <img src="{{ cover_image_url }}" alt="Cover Image">
  69. {% else %}
  70. <img src="{{ site.image_base_url }}{{ cover_image_url | append: '?x-oss-process=image/resize,m_pad,w_400,h_400' }}" alt="Cover Image">
  71. {% endif %}
  72. {% else %}
  73. <div class="img-center default-image-thumbnail no-image-placeholder-thumbnail">
  74. <span>No Image</span>
  75. </div>
  76. {% endif %}
  77. </a>
  78. </div>
  79. </div>
  80. <div class="card-body">
  81. <h3 class="heading heading-5 strong-500 mb-0 title-over-flow" >
  82. <a href="/videos/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}" title="{{ item.title | strip_html }}">{{ item.title | strip_html }}</a>
  83. </h3>
  84. </div>
  85. <div class="card-footer">
  86. <div class="row">
  87. <div class="col text-right">
  88. <ul class="inline-links inline-links--style-2">
  89. <li>
  90. {{item.post_date }}
  91. </li>
  92. </ul>
  93. </div>
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. {% endfor %}
  99. </div>
  100. </div>
  101. </section> <!-- FOOTER -->
  102. {% include '_footer.liquid' %}
  103. </div>
  104. </div>
  105. </div><!-- END: st-pusher -->
  106. </div><!-- END: st-container -->
  107. </div><!-- END: body-wrap -->
  108. <a href="#" class="back-to-top btn-back-to-top"></a>
  109. {% include '_footer_js.liquid' %}
  110. </body>
  111. </html>