pages_sp_faq.liquid 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html lang="{{site.dist.country}}">
  3. <head><meta charset="UTF-8">
  4. <title>{{page.seo_title}}</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  6. <meta name="description" content="{{page.seo_description}}" />
  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="{{description}}" />
  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">{{page.title}}</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="faq-page">
  40. <div class="section-wrapper">
  41. <div class="faq-box">
  42. <p>{{ page.content |raw }}</p>
  43. </div>
  44. </div>
  45. </section>
  46. {% include '__contact.liquid' %}
  47. {% include '_footer.liquid' %}
  48. </body>
  49. </html>