pages_detail.liquid 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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="{{ page.seo_description }}">
  9. <meta name="keywords" content="{{page.seo_keywords}}">
  10. <title>{{page.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. <section class="slice-sm sct-color-1">
  26. <div class="container container-xs">
  27. <div class="block block-post">
  28. <div class="block-body block-post-body">
  29. <h1>
  30. {{ page.title | raw }}
  31. </h1>
  32. {{page.content | raw }}
  33. </div>
  34. <!-- Comment form -->
  35. </div>
  36. </div>
  37. </section>
  38. </div>
  39. </section>
  40. <!-- FOOTER -->
  41. {% include '_footer.liquid' %}
  42. </div>
  43. </div>
  44. </div><!-- END: st-pusher -->
  45. </div><!-- END: st-container -->
  46. </div><!-- END: body-wrap -->
  47. <a href="#" class="back-to-top btn-back-to-top"></a>
  48. {% include '_footer_js.liquid' %}
  49. <!-- Isotope -->
  50. <script src="/static/js/isotope.min.js"></script>
  51. <script src="/static/js/imagesloaded.pkgd.min.js"></script>
  52. <!-- Deso Slide -->
  53. <script src="/static/js/jquery.desoslide.min.js"></script>
  54. <script>
  55. $('#slideshow').desoSlide({
  56. thumbs: $('#slideshow_thumbs .swiper-slide > a'),
  57. thumbEvent: 'click',
  58. first: 0,
  59. effect: 'none',
  60. overlay: 'none',
  61. controls: {
  62. show: false,
  63. keys: false
  64. },
  65. });
  66. </script>
  67. </body>
  68. </html>