-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
116 lines (99 loc) · 4.68 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="ZeoFlow is a fast and beautiful way to follow your interest or to interact with the people you know.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error 404 (Not Found)!!!</title>
<meta property="og:title" content="Error 404 (Not Found)!!!">
<meta property="og:description" content="ZeoFlow is a fast and beautiful way to follow your interest or to interact with the people you know.">
<meta property="og:image" content="https://raw.githubusercontent.com/zeoflow/website/master/assets/img/website_share_image_preview.png">
<meta property="og:url" content="https://zeoflow.com">
<meta property="og:site_name" content="ZeoFlow">
<meta name="keywords" content="">
<!-- Disable tap highlight on IE -->
<meta name="msapplication-tap-highlight" content="no">
<!-- Web Application Manifest -->
<link rel="manifest" href="https://zeoflow.com/manifest_404.json">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="ZeoFlow">
<meta name="theme-color" content="#3217EB">
<link rel="apple-touch-icon" sizes="57x57" href="assets/img/ic_zeoflow_logo_57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/img/ic_zeoflow_logo_60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/ic_zeoflow_logo_72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/ic_zeoflow_logo_76.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/ic_zeoflow_logo_114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/img/ic_zeoflow_logo_120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/ic_zeoflow_logo_144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/img/ic_zeoflow_logo_152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/ic_zeoflow_logo_180.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/img/ic_zeoflow_logo_192.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/img/ic_zeoflow_logo_96.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/ic_zeoflow_logo_32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/ic_zeoflow_logo_16.png">
<link rel="manifest" href="assets/assets/img/favicon/manifest.json">
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:700,900" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="https://zeoflow.com/styles/404.css" />
<meta name="msapplication-TileColor" content="#3217EB">
<meta name="msapplication-TileImage" content="assets/img/ic_zeoflow_logo_152.png">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="ZeoFlow">
<meta name="apple-mobile-web-app-status-bar-style" content="#3217EB">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NKGDS3T40M"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NKGDS3T40M');
</script>
<script>
//get the page url
//check if it is a relevant username
//forward to user profile
var url = new URL(window.location.href);
var username = url.pathname;
if(username.lastIndexOf("/") != 0)
{
history.pushState(null, null, "/404");
}
else
{
username = username.replace("/", "");
if(username != "404" && username != "profile" && username != "support")
{
window.open("profile?p=" + username, "_top");
//history.pushState(null, null, username);
}
else
{
history.pushState(null, null, "/404");
}
}
</script>
<script>
if (localStorage.getItem("ZeoFlowUserLogged")===true) {
window.open("home", "_top");
}
</script>
</head>
<body style="background-color: #e61f44; margin: 0;">
<div id="particles-js" style="position: absolute; top: 0; left: 0; bottom: 0; right: 0; width: 100%; height: 100%;"></div>
<div id="notfound">
<div class="notfound">
<div class="notfound-404">
<h1>404</h1>
<h2>Page not found</h2>
</div>
<a href="/">Homepage</a>
</div>
</div>
<script src="https://zeoflow.com/js/particles.min.js"></script>
<script src="https://zeoflow.com/js/particle.js"></script>
</body>
</html>