forked from academicpages/academicpages.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
66 lines (63 loc) · 2.79 KB
/
404.html
File metadata and controls
66 lines (63 loc) · 2.79 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found | Jose A. Guridi</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="stylesheet" href="/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600&family=Source+Serif+4:wght@600;700&display=swap" rel="stylesheet">
</head>
<body>
<a href="#main-content" class="skip-to-content">Skip to content</a>
<header>
<nav aria-label="Main navigation">
<a href="/index.html" class="nav-name">Jose A. Guridi</a>
<button class="nav-toggle" aria-label="Toggle navigation" aria-expanded="false">
<span></span><span></span><span></span>
</button>
<div class="nav-links">
<a href="/index.html#about">About</a>
<a href="/news.html">News</a>
<a href="/publications.html">Publications</a>
<a href="/projects.html">Projects</a>
<a href="/CV/Jose_Guridi_CV.pdf" target="_blank" rel="noopener noreferrer">CV</a>
<a href="/index.html#contact">Contact</a>
</div>
</nav>
</header>
<main id="main-content">
<section class="section" style="text-align: center; padding: 6rem 0;">
<h2 style="font-size: 4rem; margin-bottom: 0.5rem;">404</h2>
<p style="font-size: 1.2rem; color: var(--color-text-light); margin-bottom: 2rem;">The page you're looking for doesn't exist.</p>
<a href="/index.html" class="view-all" style="font-size: 1.05rem;">Go to homepage →</a>
</section>
</main>
<footer>
<p>© 2026 Jose A. Guridi</p>
</footer>
<script>
(function() {
var toggle = document.querySelector('.nav-toggle');
var navLinks = document.querySelector('.nav-links');
if (toggle && navLinks) {
toggle.addEventListener('click', function() {
var expanded = toggle.getAttribute('aria-expanded') === 'true';
toggle.setAttribute('aria-expanded', !expanded);
toggle.classList.toggle('active');
navLinks.classList.toggle('open');
});
navLinks.querySelectorAll('a').forEach(function(link) {
link.addEventListener('click', function() {
toggle.setAttribute('aria-expanded', 'false');
toggle.classList.remove('active');
navLinks.classList.remove('open');
});
});
}
})();
</script>
</body>
</html>