pages_sp_contact.liquid 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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="description" content="{{ site.dist.seo_description | strip_html| strip_newlines }}">
  9. <meta name="keywords" content="{{ site.dist.seo_keywords }}">
  10. <meta name="author" content="Mietubl">
  11. <title>{{ site.dist.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">
  52. <div class="container">
  53. <div class="text-center">
  54. <h2 class="heading heading-2 strong-400">
  55. Contact us for help
  56. </h2>
  57. <p>
  58. Please call us or complete the form below and we'll get to you shortly.
  59. </p>
  60. <a href="" class="btn btn-styled btn-xl btn-base-1 btn-icon-left mt-4">
  61. <i class="fa fa-mobile"></i>Hotline: {{ site.dist.service_hotline }}
  62. </a>
  63. <span class="clearfix"></span>
  64. <small>Get support by calling the 24h helpline.</small>
  65. </div>
  66. </div>
  67. </section>
  68. <section class="slice pt-0 sct-color-1">
  69. <div class="container">
  70. <div class="row justify-content-center">
  71. <div class="col-lg-8">
  72. <!-- Contact form -->
  73. {% contactus template='__contactus.liquid' %}
  74. </div>
  75. </div>
  76. </div>
  77. </section>
  78. {% include '_footer.liquid' %}
  79. </div>
  80. </div>
  81. </div><!-- END: st-pusher -->
  82. </div><!-- END: st-container -->
  83. </div><!-- END: body-wrap -->
  84. <a href="#" class="back-to-top btn-back-to-top"></a>
  85. {% include '_footer_js.liquid' %}
  86. </body>
  87. </html>