-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
68 lines (65 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<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>Page Not Found</title>
<link href="https://fonts.googleapis.com/css?family=Heebo:400,700|IBM+Plex+Sans:600" rel="stylesheet" />
<link rel="stylesheet" href="dist/css/style.css" />
</head>
<body class="is-boxed has-animations">
<div class="body-wrap boxed-container">
<header class="site-header">
<div class="container">
<div class="site-header-inner">
<div class="brand header-brand">
<h1 class="m-0">
<a href="#">
<img class="header-logo-image asset-light" src="dist/images/logo-light.svg" alt="Logo" />
<img class="header-logo-image asset-dark" src="dist/images/logo-dark.svg" alt="Logo" />
</a>
</h1>
</div>
</div>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<div class="hero-inner">
<div class="hero-copy">
<h1 class="hero-title mt-0">Oops! Page Not Found</h1>
<p class="hero-paragraph">The page you are looking for might have been removed or is temporarily unavailable.</p>
<div class="hero-cta">
<a class="button button-primary" href="/">Go Back to Home Page</a>
</div>
</div>
<div class="hero-media">
<!-- You can add custom illustrations or media here -->
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer has-top-divider">
<div class="container">
<div class="site-footer-inner">
<div class="brand footer-brand">
<a href="#">
<img class="asset-light" src="dist/images/logo-light.svg" alt="Logo" />
<img class="asset-dark" src="dist/images/logo-dark.svg" alt="Logo" />
</a>
</div>
<div class="footer-copyright">
© <script>document.write(new Date().getFullYear())</script> Open Domains - All Rights Reserved.
</div>
</div>
</div>
</footer>
</div>
<!-- External scripts -->
<script src="https://unpkg.com/[email protected]/dist/scrollreveal.min.js"></script>
<script src="dist/js/main.min.js"></script>
</body>
</html>