generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
404.html
77 lines (71 loc) · 2.08 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
<!DOCTYPE html>
<html>
<head>
<title>Page not found</title>
<script type="text/javascript">
window.isErrorPage = true;
window.errorCode = '404';
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Page not found">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<script src="/scripts/scripts.js" type="module" crossorigin="use-credentials"></script>
<script type="module">
import { sampleRUM } from '/scripts/aem.js';
const head = document.querySelector('title');
head.innerText = 'Error 404 - Page not found | Aldevron';
</script>
<link rel="stylesheet" href="/styles/Typo.css"/>
<link rel="stylesheet" href="/styles/template.css"/>
<link rel="stylesheet" href="/styles/responsive.css"/>
<link rel="stylesheet" href="/styles/gcse.css"/>
<link rel="stylesheet" href="/styles/styles_2020.css"/>
<style>
main .section {
padding: 0!important;
}
main.error .error-number {
width: 100%;
}
main.error .error-number text {
font-family: var(--fixed-font-family);
}
.hero {
overflow: hidden;
}
</style>
</head>
<body>
<header></header>
<main class="error">
<div id="content-wrapper">
<div class="hero bg block">
<div>
<div>
<picture>
<img alt="Not Found page" src="/icons/hero-inner-default.webp" width="2000" height="550">
</picture>
</div>
</div>
<div>
<div>
<h1 id="error-404-page-not-found">Error 404: Page not found</h1>
</div>
</div>
</div>
</div>
<div>
<div class="rte outer">
<div id="main" class="v-space-80">
<p>Sorry, the page you were looking for at this URL was not found.</p>
<p><a class="button" href="/">Continue to the homepage</a></p>
</div>
</div>
</div>
<div class="clearfix"></div>
</main>
<footer></footer>
</body>
</html>