pages_detail.liquid 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. {{ page.title | raw }}
  57. </h1>
  58. {{page.content | raw }}
  59. </div>
  60. <!-- Comment form -->
  61. </div>
  62. </div>
  63. </section>
  64. {{ page.page_type }}
  65. {% if page.page_type == 0 %}
  66. <section class="slice sct-color-1">
  67. <div class="container">
  68. <div class="pt-5">
  69. <nav aria-label="Product pagination">
  70. <ul class="pagination pagination--style-2 justify-content-center">
  71. <!-- Previous Page Link -->
  72. {% if paginator.previous_page %}
  73. <li class="page-item">
  74. <a class="page-link" href="{{ paginator.previous_page_url }}" tabindex="-1">Previous</a>
  75. </li>
  76. {% else %}
  77. <li class="page-item disabled">
  78. <a class="page-link" href="#" tabindex="-1">Previous</a>
  79. </li>
  80. {% endif %}
  81. <!-- Next Page Link -->
  82. {% if paginator.next_page %}
  83. <li class="page-item">
  84. <a class="page-link" href="{{ paginator.next_page_url }}">Next</a>
  85. </li>
  86. {% else %}
  87. <li class="page-item disabled">
  88. <a class="page-link" href="#">Next</a>
  89. </li>
  90. {% endif %}
  91. </ul>
  92. </nav>
  93. </div>
  94. </div>
  95. </section>
  96. {% endif %}
  97. <!-- FOOTER -->
  98. {% include '_footer.liquid' %}
  99. </div>
  100. </div>
  101. </div><!-- END: st-pusher -->
  102. </div><!-- END: st-container -->
  103. </div><!-- END: body-wrap -->
  104. <a href="#" class="back-to-top btn-back-to-top"></a>
  105. {% include '_footer_js.liquid' %}
  106. <!-- Isotope -->
  107. <script src="/static/js/isotope.min.js"></script>
  108. <script src="/static/js/imagesloaded.pkgd.min.js"></script>
  109. <!-- Deso Slide -->
  110. <script src="/static/js/jquery.desoslide.min.js"></script>
  111. <script>
  112. $('#slideshow').desoSlide({
  113. thumbs: $('#slideshow_thumbs .swiper-slide > a'),
  114. thumbEvent: 'click',
  115. first: 0,
  116. effect: 'none',
  117. overlay: 'none',
  118. controls: {
  119. show: false,
  120. keys: false
  121. },
  122. });
  123. </script>
  124. </body>
  125. </html>