collection_list.liquid 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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 pages %}
  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="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}">
  65. {% if item.cover_image %}
  66. <img src="{% if item.cover_image contains 'http' %}{{ item.cover_image }}{% else %}{{ site.image_base_url }}{{ item.cover_image | append: '?x-oss-process=image/resize,m_pad,w_400,h_400' }}{% endif %}" alt="Cover Image">
  67. {% else %}
  68. <div class=" d-flex justify-content-center align-items-center"
  69. style="background-color: #FFF; width: 100%; height: 0; padding-top: 100%; position: relative; display: flex;">
  70. <span style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 16px; color: #555;">No Image</span>
  71. </div>
  72. {% endif %}
  73. </a>
  74. </div>
  75. </div>
  76. <div class="card-body">
  77. <h3 class="heading heading-5 strong-500 mb-0 title-over-flow" >
  78. <a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}" title="{{ item.title | strip_html }}">{{ item.title | strip_html }}</a>
  79. </h3>
  80. </div>
  81. <div class="card-footer">
  82. <div class="row">
  83. <div class="col text-right">
  84. <ul class="inline-links inline-links--style-2">
  85. <li>
  86. {{item.post_date }}
  87. </li>
  88. </ul>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. </div>
  94. {% endfor %}
  95. </div>
  96. </div>
  97. <div class="pt-5">
  98. <nav aria-label="Product pagination">
  99. <ul class="pagination pagination--style-2 justify-content-center">
  100. <!-- Previous Page Link -->
  101. {% if paginator.previous_page %}
  102. <li class="page-item">
  103. <a class="page-link" href="{{ paginator.previous_page_url }}" tabindex="-1">Previous</a>
  104. </li>
  105. {% else %}
  106. <li class="page-item disabled">
  107. <a class="page-link" href="#" tabindex="-1">Previous</a>
  108. </li>
  109. {% endif %}
  110. <!-- Pagination Links -->
  111. {% for page in paginator.pages %}
  112. {% if page == paginator.current_page %}
  113. <li class="page-item active">
  114. <span class="page-link">{{ page }}</span>
  115. </li>
  116. {% else %}
  117. <li class="page-item">
  118. <a class="page-link" href="{{ paginator.page_url[page] }}">{{ page }}</a>
  119. </li>
  120. {% endif %}
  121. {% endfor %}
  122. <!-- Next Page Link -->
  123. {% if paginator.next_page %}
  124. <li class="page-item">
  125. <a class="page-link" href="{{ paginator.next_page_url }}">Next</a>
  126. </li>
  127. {% else %}
  128. <li class="page-item disabled">
  129. <a class="page-link" href="#">Next</a>
  130. </li>
  131. {% endif %}
  132. </ul>
  133. </nav>
  134. </div>
  135. </section> <!-- FOOTER -->
  136. {% include '_footer.liquid' %}
  137. </div>
  138. </div>
  139. </div><!-- END: st-pusher -->
  140. </div><!-- END: st-container -->
  141. </div><!-- END: body-wrap -->
  142. <a href="#" class="back-to-top btn-back-to-top"></a>
  143. {% include '_footer_js.liquid' %}
  144. </body>
  145. </html>