-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
68 lines (68 loc) · 3.07 KB
/
404.html
File metadata and controls
68 lines (68 loc) · 3.07 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
<title></title>
<meta property="og:url" content="">
<meta property="og:title" content="">
<meta property="og:image" content="//">
<link rel="shortcut icon" type="image/x-icon" href="/assets/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico">
<link href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<link href="/assets/styles/app-3f0cb14a89.css" rel="stylesheet">
<link href="/assets/styles/vendor-1ba49eab0d.css" rel="stylesheet">
</head>
<body class="q-layout">
<!--[if lt IE 11]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<section class="mui-container">
<div class="q-dvcard mui-panel">
<div class="q-dvcard__title">
<span class="mui--pull-left"><img src="/assets/images/quixey_blue_20px-bf6f88cae5.png" width="20px" height="20px"> Quixey Docs</span><span class="mui--pull-right">Unexpected</span>
<div class="mui--clearfix"></div>
</div>
<div class="q-dvcard__body">
<span class="mui--pull-left">
<h1>404 - File Not found</h1>
<p>We couldn't find your page. Possible reasons include:</p>
<ul>
<li>The page has moved</li>
<li>The page no longer exists</li>
<li>You followed a broken link</li>
<li>The browser ate your link</li>
</ul>
<p>No worries. These might help you get to your destination.</p>
</span>
<span class="mui--pull-right q-dvcard__image"><i class="fa fa-frown-o" aria-hidden="true"></i></span>
<div class="mui--clearfix"></div>
<div class="q-dvcard__actions">
<span><a href="/index.html" class="mui-btn mui-btn--primary"><i class="fa fa-book" aria-hidden="true"></i> Quixey Docs</a></span>
<span><a href="http://www.quixey.com" class="mui-btn q-dvcard__btn"><i class="fa fa-home" aria-hidden="true"></i> Quixey Home</a></span>
</div>
</div>
</div>
</section>
<script>
const emoEl = document.querySelector('.q-dvcard__image .fa');
const actionsEl = document.querySelector('.q-dvcard__actions');
actionsEl.addEventListener('mouseover', (ev) => {
if (ev.target.tagName.match(/^[AI]$/)) {
emoEl.classList.remove('fa-frown-o');
emoEl.classList.add('fa-smile-o');
}
});
actionsEl.addEventListener('mouseout', (ev) => {
if (ev.target.tagName.match(/^[AI]$/)) {
emoEl.classList.remove('fa-smile-o');
emoEl.classList.add('fa-frown-o');
}
});
</script>
<script src="/assets/scripts/vendor-ecf276ef5f.js"></script>
<script src="/assets/scripts/app-26398c97da.js"></script>
</body>
</html>