|
@@ -0,0 +1,61 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="{{site.dist.country_lang}}">
|
|
|
+<head><meta charset="UTF-8">
|
|
|
+ <title>{{tag.seo_title}}</title>
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
+ <meta name="description" content="{{ site.dist.seo_description | strip_html| strip_newlines }}" />
|
|
|
+ <link rel="canonical" href="{{site.current_url}}" />
|
|
|
+ <meta property="og:locale" content="en_US" />
|
|
|
+ <meta property="og:type" content="website" />
|
|
|
+ <meta property="og:title" content="{{site.dist.company_name}}" />
|
|
|
+ <meta property="og:description" content="{{ site.dist.seo_description | strip_html| strip_newlines }}" />
|
|
|
+ <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/responsive.css?ver=0118">
|
|
|
+ <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 not found</h1>
|
|
|
+ <div class="breadcrumb-wrapper">
|
|
|
+ <a href="/">Home</a> <span>/</span> <strong>Page not found</strong>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</section>
|
|
|
+
|
|
|
+<section>
|
|
|
+ <div class="page-bg">
|
|
|
+ </div>
|
|
|
+ <div class="wrapper">
|
|
|
+ <img src="{{ site.asset_base_url }}static/tpl/screen_protector_solutions/image/404.png" style="margin:60px auto;display:block;">
|
|
|
+ <div >
|
|
|
+ <a href="/" style="display:block;margin:auto;background:#5298ff;color:#FFF;width:240px;border-radius:3px;height:42px;line-height:42px;font-size:16px;text-align:center;margin-bottom: 120px;">Back to the home page</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</section>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+{% include '_footer.liquid' %}
|
|
|
+<script>
|
|
|
+ setTimeout(function() {
|
|
|
+ window.location.href = "/"; // 替换为主页URL
|
|
|
+ }, 5000); // 5000毫秒=5秒[3,4](@ref)
|
|
|
+</script>
|
|
|
+</body>
|
|
|
+</html>
|