1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html lang="{{site.dist.country}}">
- <head><meta charset="UTF-8">
- <title>{{page.seo_title}}</title>
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <meta name="description" content="{{page.seo_description}}" />
- <link rel="canonical" href="{{site.current_url}}/" />
- <meta property="og:locale" content="{{site.dist.country_alpha_2l}}" />
- <meta property="og:type" content="website" />
- <meta property="og:title" content="{{site.dist.company_name}}" />
- <meta property="og:description" content="{{description}}" />
- <meta property="og:url" content="{{site.current_url}}" />
- <meta property="og:site_name" content="{{site.dist.site_name}}" />
- <meta name="twitter:card" content="summary_large_image" />
- <link rel='shortlink' href='{{site.current_url}}' />
- <link rel="stylesheet" href="{{ site.asset_base_url}}static/tpl/screenprotector/css/css.css?ver=0705">
- <link rel="stylesheet" href="{{ site.asset_base_url}}static/tpl/screenprotector/css/swiper-bundle.min.css?ver=0705">
- <script src="{{ site.asset_base_url}}static/tpl/screenprotector/js/jquery.min.js"></script>
- <script src="{{ site.asset_base_url}}static/tpl/screenprotector/js/swiper-bundle.min.js"></script>
- <script src="{{ site.asset_base_url}}static/tpl/screenprotector/js/main.js?ver=0705"></script>
- </head>
- <body>
- {% include '_header.liquid' %}
- <section class="page-header">
- <div class="section-wrapper">
- <h1 class="page-title">{{page.title}}</h1>
- <div class="breadcrumb-wrapper">
- {% for breadcrumb in breadcrumbs %}
- <a href="{{ breadcrumb.url }}">
- {{ breadcrumb.name }}
- </a>
- {% if forloop.index != forloop.length %}
- <span>/</span>
- {% endif %}
- {% endfor %}
- </div>
- </div>
- </section>
- <section class="faq-page">
- <div class="section-wrapper">
- <div class="faq-box">
- <p>{{ page.content |raw }}</p>
- </div>
- </div>
- </section>
- {% include '__contact.liquid' %}
- {% include '_footer.liquid' %}
- </body>
- </html>
|