-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
82 lines (78 loc) · 2.79 KB
/
Copy path404.html
File metadata and controls
82 lines (78 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Not found — binder | uRadical</title>
<meta name="description" content="That page does not exist. The documentation is at /docs/.">
<meta name="robots" content="noindex, follow">
<link rel="icon" href="/assets/favicon.svg" type="image/svg+xml">
<meta name="color-scheme" content="light dark">
<meta name="theme-color" content="#FBFBFD" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#080E2B" media="(prefers-color-scheme: dark)">
<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=Sen:wght@400;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/site.css">
<script src="/assets/js/components.js" type="module"></script>
<script>
try {
var t = localStorage.getItem('bd-theme');
if (t === 'light' || t === 'dark') document.documentElement.dataset.theme = t;
} catch (e) {}
</script>
</head>
<body>
<header class="site-header">
<div class="wrap header-inner">
<a class="wordmark" href="/">
<img class="mark" src="/assets/binder.svg" alt="" width="36" height="24" decoding="async">
<span>binder</span>
</a>
<nav aria-label="Primary">
<ul class="nav">
<li><a href="/#why">Why</a></li>
<li><a href="/#sources">Sources</a></li>
<li><a href="/docs/">Docs</a></li>
<li><a href="/#install">Install</a></li>
</ul>
</nav>
<div class="header-actions">
<bd-theme-toggle></bd-theme-toggle>
</div>
</div>
</header>
<main id="main" class="hero">
<div class="wrap hero-inner">
<p class="eyebrow">404</p>
<h1>Nothing bound<br>to that path.</h1>
<p class="lede">
The page you asked for is not here. The documentation is the most likely
thing you were after.
</p>
<p class="hero-links">
<a class="btn btn-primary" href="/docs/">Documentation</a>
<a class="btn" href="/">Home</a>
</p>
</div>
</main>
<footer class="site-footer">
<div class="wrap footer-inner">
<div>
<span class="footer-brand">
<img src="/assets/binder.svg" alt="" width="39" height="26" decoding="async">
<span class="footer-mark">binder</span>
</span>
<p class="footer-note">MIT licensed. Written in Go, with no dependencies.</p>
</div>
<nav aria-label="Footer">
<ul class="footer-links">
<li><a href="/docs/">Docs</a></li>
<li><a href="https://github.com/uRadical/binder" rel="noopener">GitHub</a></li>
<li><a href="https://pkg.go.dev/uradical.io/go/binder" rel="noopener">pkg.go.dev</a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>