-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
60 lines (54 loc) · 2.17 KB
/
Copy path404.html
File metadata and controls
60 lines (54 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found — Makerspace</title>
<meta name="description" content="This page could not be found on the Makerspace site.">
<meta name="robots" content="noindex, follow">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="app/styles/style.css">
<script defer src="https://analytics.moonlight.ng/script.js" data-website-id="1f7777fa-5dee-49d7-931b-46d28702bf81"></script>
</head>
<body>
<noscript>
<style>
body {
opacity: 1
}
</style>
</noscript>
<!-- Peripheral Navigation -->
<div id="navigation-placeholder"></div>
<main class="page-content">
<section class="viewport-section section-beige">
<header style="text-align: center; max-width: 800px; margin: 0 auto;">
<h1 style="font-size: 2rem; margin-bottom: 0.5rem; line-height: 1;">404</h1>
<p style="text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem;">
Page Not Found
</p>
</header>
<div class="prose" style="max-width: 600px; margin: 2rem auto; text-align: center;">
<p>The page you are looking for does not exist or has been moved.</p>
</div>
<a href="/" class="btn-continue">Back to Home</a>
</section>
</main>
<div id="footer-placeholder"></div>
<script src="app/scripts/navigation.js"></script>
<script>
// Load navigation component
fetch('app/components/navigation.html')
.then(response => response.text())
.then(html => {
document.getElementById('navigation-placeholder').innerHTML = html;
// Re-initialize navigation after component loads
if (window.initNavigation) {
window.initNavigation();
}
});
</script>
<script src="app/scripts/footer.js"></script>
<script src="app/scripts/page-transitions.js"></script>
</body>
</html>