-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
53 lines (49 loc) · 1.63 KB
/
Copy path404.html
File metadata and controls
53 lines (49 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page not found — Brad Bachu</title>
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<!-- Header (loaded by JS) -->
<div id="site-header">
<noscript>
<header class="site-header">
<div class="container">
<a href="/" class="site-header__name">Brad Bachu</a>
<nav class="site-nav" aria-label="Main navigation">
<ul class="site-nav__list" role="list">
<li><a href="/" class="site-nav__link">Home</a></li>
<li><a href="/about.html" class="site-nav__link">About</a></li>
<li><a href="/research.html" class="site-nav__link">Research</a></li>
<li><a href="/speaking.html" class="site-nav__link">Speaking</a></li>
<li><a href="/teaching.html" class="site-nav__link">Teaching</a></li>
<li><a href="/podcasts.html" class="site-nav__link">Podcasts</a></li>
</ul>
</nav>
</div>
</header>
</noscript>
</div>
<main>
<div class="container page-404">
<h1>404</h1>
<p>This page doesn't exist. It may have been moved or removed.</p>
<a href="/" class="btn">Back to home</a>
</div>
</main>
<!-- Footer (loaded by JS) -->
<div id="site-footer">
<noscript>
<footer class="site-footer">
<div class="container">
<span class="site-footer__copy">© 2026 Brad Bachu</span>
</div>
</footer>
</noscript>
</div>
<script src="/js/site.js"></script>
</body>
</html>