-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
81 lines (76 loc) · 2.37 KB
/
Copy path404.html
File metadata and controls
81 lines (76 loc) · 2.37 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>404 · Not found · BluPulse</title>
<meta name="description" content="The page you were looking for doesn't exist on BluPulse." />
<meta name="robots" content="noindex" />
<link rel="icon" href="./favicon.svg" type="image/svg+xml" />
<link rel="stylesheet" href="./assets/css/styles.css?v=52" />
<style>
.notfound {
max-width: 560px;
margin: 0 auto;
text-align: center;
padding: 24px 20px 8px;
}
.notfound-code {
font-size: clamp(72px, 14vw, 128px);
font-weight: 800;
letter-spacing: -3px;
line-height: 1;
margin: 0 0 8px;
background: linear-gradient(135deg, var(--blue), var(--purple));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.notfound-title {
font-size: var(--fs-xl);
font-weight: 700;
margin: 0 0 10px;
}
.notfound-body {
color: var(--text-muted);
line-height: 1.65;
margin: 0 0 20px;
}
.notfound-actions {
display: inline-flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}
</style>
</head>
<body class="page-404">
<a class="skip-link" href="#notfound-main">Skip to content</a>
<header class="topnav">
<div class="topnav-inner">
<a class="brand" href="./index.html" aria-label="BluPulse home">
<span class="brand-badge">BP</span>
<span class="brand-name">Blu<span class="brand-accent">Pulse</span></span>
</a>
<nav class="navlinks" aria-label="Primary">
<a class="navlink" href="./index.html">Articles</a>
<a class="navlink" href="./about.html">About</a>
</nav>
</div>
</header>
<main class="page" id="notfound-main">
<section class="panel notfound">
<h1 class="notfound-code" aria-label="404">404</h1>
<p class="notfound-title">Page not found</p>
<p class="notfound-body">
The URL you followed doesn't match anything here. The article may have been renamed,
or the link was mistyped.
</p>
<div class="notfound-actions">
<a class="loadmore-btn" href="./index.html">Browse articles</a>
<a class="about-link" href="./about.html">About</a>
</div>
</section>
</main>
</body>
</html>