-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path404.html
More file actions
66 lines (60 loc) · 2.32 KB
/
404.html
File metadata and controls
66 lines (60 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 Not Found | HouseLearning</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="/assets/js/cookiebanner.js"></script>
<script src="/assets/js/feedback.js"></script>
<script src="/assets/js/nav.js" defer></script>
<script type="module" src="/assets/js/also.js"></script>
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="icon" href="/assets/images/favicons/favicon.ico">
</head>
<body>
<div class="container">
<header>
<div class="brand">
<div class="logo">HL</div>
<div>
<div class="brand-name">HouseLearning</div>
<div class="brand-tagline">Learn anything — fast, free, focused</div>
</div>
</div>
<nav id="site-nav">
<a href="/home">Home</a>
<a href="https://houselearning.org/safe-library">SafeLibrary</a>
<a href="https://houselearning.org/home/about">About</a>
<a href="https://apply.houselearning.org">Apply</a>
<a href="https://github.com/houselearning">View on GitHub</a>
<a class="button btn-ghost" href="https://houselearning.org/auth/">Log in</a>
<a class="button btn-primary" href="https://houselearning.org/auth/">Sign up</a>
</nav>
<button class="nav-toggle button btn-ghost" type="button" aria-label="Open menu" aria-controls="site-nav"
aria-expanded="false">Menu</button>
</header>
<main class="notfound">
<div class="card">
<div class="icon">🏠</div>
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Oops! We can't seem to find the page you're looking for.<br>
Head back to HouseLearning's homepage to continue exploring.</p>
<a class="button btn-primary" href="/">Go Home</a>
</div>
</main>
<footer>
<div class="footer-grid">
<div>
<div class="footer-name">HouseLearning</div>
<div class="footer-copy">© HouseLearning — free learning for curious people</div>
</div>
<div class="footer-links">
<a href="https://houselearning.org/home/about">About</a>
<a href="https://github.com/houselearning/apply?tab=readme-ov-file#available-volunteer-jobs">Careers</a>
</div>
</div>
</footer>
</div>
</body>
</html>