-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
62 lines (55 loc) · 2.04 KB
/
404.html
File metadata and controls
62 lines (55 loc) · 2.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>404 Not Found — HouseLearning</title>
<link rel="stylesheet" href="/css/404.css" />
<script src="https://houselearning.org/feedback.js"></script>
<script src="https://houselearning.org/cookiebanner.js"></script>
</head>
<body>
<header class="hl-nav">
<div class="hl-nav-left">
<a class="hl-logo" href="/">HouseLearning</a>
<a href="/docs/forum.html">Forum</a>
<a href="/blob.html">Blob</a>
<a href="/blog.html">Blog</a>
</div>
<div class="hl-nav-right">
<a href="/" class="hl-btn small">Home</a>
</div>
</header>
<main class="notfound-layout">
<section class="card notfound-card">
<div class="notfound-visual" aria-hidden="true">
<div class="blob-404">404</div>
</div>
<div class="notfound-content">
<h1>Page not found</h1>
<p class="muted">We couldn't find the page you were looking for. It may have been moved, renamed, or never existed.</p>
<div class="notfound-actions">
<a class="hl-btn primary" href="/">Go to Home</a>
<button id="searchBtn" class="hl-btn">Search the forum</button>
<button id="reportBtn" class="hl-btn">Report broken link</button>
</div>
<div class="notfound-suggest">
<h3>Popular places</h3>
<ul>
<li><a href="/docs/forum.html">Forum</a></li>
<li><a href="/blob.html">HouseLearning Blob</a></li>
<li><a href="https://houselearning.org/home/blog.html">Blog</a></li>
<li><a href="https://github.com/houselearning/gists/">Open Source ❤</a></li>
</ul>
</div>
<div id="reportStatus" class="muted small"></div>
</div>
</section>
</main>
<footer class="hl-footer">
<a href="https://houselearning.org/privacy.html">Privacy</a>
<span>© HouseLearning</span>
</footer>
<script type="module" src="/js/404.js"></script>
</body>
</html>