-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
82 lines (77 loc) · 2.42 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.0.1/dist/cookieconsent.css">
<meta charset="UTF-8">
<!-- Google tag (gtag.js) -->
<title>404 Page Not Found</title>
<style>
/* Center the content horizontally and vertically */
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
/* Style the text */
h1 {
font-size: 5rem;
font-weight: bold;
text-align: center;
margin-bottom: 2rem;
}
p {
font-size: 2rem;
text-align: center;
}
ul {
font-size: 1.5rem;
text-align: center;
list-style-type: none;
}
li {
margin-bottom: 1rem;
}
</style>
</head>
<body>
<div>
<h1>404 Page Not Found</h1>
<p>Sorry, the page you requested could not be found.</p>
<p>Back to:</p>
<ul>
<li><a href="/router/en/4/">Homepage of Router 4.x docs</a></li>
<li><a href="/router/en/3/">Homepage of Router 3.x docs</a></li>
<li><a href="/iot/en/">Homepage of IoT docs</a></li>
<li><a href="mailto:support@glinet.biz?subject=I find a 404 error on your docs site">Send us this 404 error by email</a></li>
</ul>
</div>
</body>
<script>
// Define dataLayer and the gtag function.
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('consent', 'default', {
'ad_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied',
'analytics_storage': 'denied',
'functionality_storage': 'denied',
'personalization_storage': 'denied',
'security_storage': 'denied',
});
</script>
<script defer src="https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.0.1/dist/cookieconsent.umd.js"></script>
<script defer src="https://www.gl-inet.com/js/cookieconsent.js"></script>
<script type="text/plain" data-category="analytics"
data-src="https://www.googletagmanager.com/gtag/js?id=G-34T6Q5NL0V">
</script>
<script type="text/plain" data-category="analytics">
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
console.log('1');
gtag('config', 'G-34T6Q5NL0V');
</script>
</html>