collection_list.liquid 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!DOCTYPE html>
  2. <html>
  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 name="author" content="Mietubl">
  8. <meta name="description" content="{{ tag.seo_description }}">
  9. <meta name="keywords" content="{{tag.seo_keywords}}">
  10. <title>{{tag.seo_title}}</title>
  11. {% include '_header_css.liquid' %}
  12. </head>
  13. <body>
  14. <!-- MAIN WRAPPER -->
  15. <div class="body-wrap shop-default shop-cards shop-tech">
  16. <div id="st-container" class="st-container">
  17. <div class="st-pusher">
  18. <div class="st-content">
  19. <div class="st-content-inner">
  20. <!-- HEADER -->
  21. {% include '_header.liquid' %}
  22. <!-- END: HEADER -->
  23. <section class="slice sct-color-1">
  24. <div class="container">
  25. <div class="row align-items-center">
  26. <div class="col-12" >
  27. <h3 class="heading heading-6 strong-600 text-uppercase mb-0 text-center">{{ tag.name }}</h3>
  28. </div>
  29. </div>
  30. <div class="row cols-md-space cols-sm-space cols-xs-space">
  31. {% for item in pages %}
  32. <div class="col-lg-4 col-wrapper--spaced-y">
  33. <div class="card z-depth-2-top">
  34. <div class="card-image">
  35. <div class="view view-first">
  36. <a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}">
  37. {% if item.cover_image %}
  38. <img src="{{ site.image_base_url }}{{ item.cover_image | append: '?x-oss-process=image/resize,m_pad,w_400,h_400' }}" alt="Cover Image " >
  39. {% else %}
  40. <div class="img-center default-image-thumbnail no-image-placeholder-thumbnail">
  41. <span>No Image</span>
  42. </div>
  43. {% endif %}
  44. </a>
  45. </div>
  46. </div>
  47. <div class="card-body">
  48. <h3 class="heading heading-5 strong-500 mb-0 title-over-flow" >
  49. <a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}" title="{{ item.title | strip_html }}">{{ item.title | strip_html }}</a>
  50. </h3>
  51. </div>
  52. <div class="card-footer">
  53. <div class="row">
  54. <div class="col text-right">
  55. <ul class="inline-links inline-links--style-2">
  56. <li>
  57. {{item.post_date }}
  58. </li>
  59. </ul>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. {% endfor %}
  66. </div>
  67. </div>
  68. </section> <!-- FOOTER -->
  69. {% include '_footer.liquid' %}
  70. </div>
  71. </div>
  72. </div><!-- END: st-pusher -->
  73. </div><!-- END: st-container -->
  74. </div><!-- END: body-wrap -->
  75. <a href="#" class="back-to-top btn-back-to-top"></a>
  76. {% include '_footer_js.liquid' %}
  77. </body>
  78. </html>