-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
91 lines (90 loc) · 2.78 KB
/
Copy path404.html
File metadata and controls
91 lines (90 loc) · 2.78 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
82
83
84
85
86
87
88
89
90
91
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 — Page not found | Ledger</title>
<meta
name="description"
content="The page you were looking for could not be found."
/>
<meta property="og:title" content="404 — Page not found | Ledger" />
<meta
property="og:description"
content="The page you were looking for could not be found."
/>
<meta
property="og:image"
content="https://tuffgit21.github.io/og-image.svg"
/>
<link rel="icon" href="favicon.ico" sizes="any" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://tuffgit21.github.io/styles.css" />
<script>
window.LEDGER_ANALYTICS_ID = "";
</script>
<script src="site.js" defer></script>
</head>
<body class="page-loading">
<div
class="page-loader"
data-page-loader
aria-label="Loading"
role="status"
>
<span></span>
</div>
<header>
<div class="header-inner">
<a class="logo" href="/"
><img
src="./favicon.svg"
height="25"
width="25"
style="
border: 1px var(--accent) solid;
position: relative;
top: 7px;
border-radius: 0px;
"
/>edger<span>.</span></a
>
<nav aria-label="Main navigation">
<a href="/#home">home</a>
<a href="/#work">work</a>
<a href="/#about">about</a>
<a href="/#contact">contact</a>
</nav>
</div>
</header>
<main class="not-found wrap">
<section class="not-found-inner" aria-labelledby="not-found-title">
<div class="not-found-code" aria-hidden="true">404</div>
<h1 id="not-found-title">This page went missing.</h1>
<p>The link may be outdated, or this page has not been shipped yet.</p>
<a class="btn-primary" href="/">Return home →</a>
</section>
</main>
<div
class="cookie-banner"
data-cookie-banner
hidden
role="dialog"
aria-label="Cookie preferences"
>
<p>
Ledger uses optional analytics cookies to understand site visits.
<a href="privacy.html">Privacy policy</a>
</p>
<div>
<button class="btn-primary" data-cookie-accept>Accept</button
><button class="btn-ghost" data-cookie-decline>Decline</button>
</div>
</div>
</body>
</html>