-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
executable file
·43 lines (39 loc) · 1.7 KB
/
404.html
File metadata and controls
executable file
·43 lines (39 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en" class="layout-error">
<head>
<meta charset="utf-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>We can't locate the page you are looking for | 404 </title>
<meta name="theme-color" content="#1b79ea"/>
<link rel="manifest" href="public/manifest.json">
<link rel="apple-touch-icon" sizes="152x152" href="public/images/favicon/apple-icon-152x152.png"/>
<link rel="icon" type="image/png" sizes="192x192" href="public/images/favicon/android-icon-144x144.png"/>
<link rel="icon" type="image/png" sizes="32x32" href="public/images/favicon/favicon-32x32.png"/>
<link rel="icon" type="image/png" sizes="16x16" href="public/images/favicon/favicon-16x16.png"/>
<link rel="icon" type="image/x-icon" href="public/images/favicon/favicon.ico">
<link rel="stylesheet" media="screen" href="https://fonts.googleapis.com/css?family=Work+Sans:400,700" />
<link rel="stylesheet" href="public/stylesheets/error.css" />
</head>
<body>
<div class="error">
<header class="error__header">
<h1 class="error__head-line">404</h1>
<p class="error__sub-header">
Oops, the page you're <br>
looking for does not exist.
</p>
</header>
<hr>
<div class="error__context">
<p>
You may want to head back to the homepage.<br />
If you think something is broken, report a problem.
</p>
</div>
<div class="error__action">
<a class="btn btn--outline" href="/" target="_blank">Go To Homepage</a>
<a class="btn btn--outline" href="mailto:rubyconfth@gmail.com" target="_blank">Report A Problem</a>
</div>
</div>
</body>
</html>