collection_list.liquid 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!DOCTYPE html>
  2. <html lang="{{site.dist.country}}">
  3. <head><meta charset="UTF-8">
  4. <title>{{tag.seo_title}}</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  6. <meta name="description" content="{{ site.dist.seo_description | strip_html| strip_newlines }}" />
  7. <link rel="canonical" href="{{site.current_url}}" />
  8. <meta property="og:locale" content="{{site.dist.country_alpha_2l}}" />
  9. <meta property="og:type" content="website" />
  10. <meta property="og:title" content="{{site.dist.company_name}}" />
  11. <meta property="og:description" content="{{ site.dist.seo_description | strip_html| strip_newlines }}" />
  12. <meta property="og:url" content="{{site.current_url}}" />
  13. <meta property="og:site_name" content="{{site.dist.site_name}}" />
  14. <meta name="twitter:card" content="summary_large_image" />
  15. <link rel='shortlink' href='{{site.current_url}}' />
  16. <link rel="stylesheet" href="{{ site.asset_base_url}}static/tpl/screenprotector/css/css.css?ver=0705">
  17. <link rel="stylesheet" href="{{ site.asset_base_url}}static/tpl/screenprotector/css/swiper-bundle.min.css?ver=0705">
  18. <script src="{{ site.asset_base_url}}static/tpl/screenprotector/js/jquery.min.js"></script>
  19. <script src="{{ site.asset_base_url}}static/tpl/screenprotector/js/swiper-bundle.min.js"></script>
  20. <script src="{{ site.asset_base_url}}static/tpl/screenprotector/js/main.js?ver=0705"></script>
  21. </head>
  22. <body>
  23. {% include '_header.liquid' %}
  24. <section class="page-header">
  25. <div class="section-wrapper">
  26. <h1 class="page-title">{{tag.name}}</h1>
  27. <div class="breadcrumb-wrapper">
  28. {% for breadcrumb in breadcrumbs %}
  29. <a href="{{ breadcrumb.url }}">
  30. {{ breadcrumb.name }}
  31. </a>
  32. {% if forloop.index != forloop.length %}
  33. <span>/</span>
  34. {% endif %}
  35. {% endfor %}
  36. </div>
  37. </div>
  38. </section>
  39. <section class="news-list-page">
  40. <div class="section-wrapper">
  41. <div class="container">
  42. <aside class="recent">
  43. <h2>Recent post</h2>
  44. <ul class="title-block">
  45. {% for item in pages %}
  46. <li> <a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}" title="{{ item.title | strip_html }}">{{ item.title | strip_html }}</a></li>
  47. {% endfor %}
  48. </ul>
  49. </aside>
  50. <div class="news-list">
  51. {% for item in pages %}
  52. <div class="news-item">
  53. <div class="post-thumbnail">
  54. <a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}" title="{{ item.title | strip_html }}">
  55. {% if item.cover_image %}
  56. <img src="{% if item.cover_image contains 'http' %}{{ item.cover_image }}{% else %}{{ site.image_base_url }}{{ item.cover_image }}{% endif %}" alt="Cover Image">
  57. {% else %}
  58. <img src="{{ site.image_base_url }}static/common/images/product_default.jpg" class="img-center default-image-thumbnail" alt="{{ item.title | strip_html }}" >
  59. {% endif %}
  60. </a>
  61. </div>
  62. <div class="blog-content">
  63. <h2 class="entry-title"><a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}" title="{{ item.title | strip_html }}"> {{ item.title | decode_html_entities | strip_html }}</a></h2>
  64. <div class="entry-content">
  65. <p>
  66. {% if item.seo_description %}
  67. {{ item.seo_description }}
  68. {% else %}
  69. No description available.
  70. {% endif %}
  71. </p>
  72. </div>
  73. <a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}" title="{{ item.title | strip_html }}" class="tt-btn">
  74. Read More <i class="fas fa-arrow-right"></i>
  75. </a>
  76. </div>
  77. </div><!--news-item-->
  78. {% endfor %}
  79. </div>
  80. </div><!--container-->
  81. </div>
  82. </section>
  83. {% include '_footer.liquid' %}
  84. </body>
  85. </html>