-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
72 lines (63 loc) · 2.85 KB
/
404.html
File metadata and controls
72 lines (63 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404</title>
<link rel="stylesheet" href="/main.css">
<link rel="stylesheet" href="/articles/related_articles.css">
</head>
<body>
<nav class="nav-bar">
<div class="nav-card">
<div class="nav-container">
<div class="nav-logo">
<a href="/">
<img src="https://glideclient.github.io/Branding/glideicon.svg" alt="GlideClient Logo" class="logo-image">
</a>
</div>
<div class="nav-links">
<a href="/" class="nav-link" title="Home">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" />
</svg>
</a>
<a href="https://glideclient.com/discord" class="nav-link" title="Contact Us">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg>
</a>
<a href="https://glideclient.com" class="nav-link" title="Exit to GlideClient">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1" />
</svg>
</a>
</div>
</div>
</div>
</nav>
<header>
<div class="header-card">
<div class="header-image">
<img src="/assets/bg.webp">
</div>
<div class="header-content">
<h1>404</h1>
<h3>Page could not be found.</h3>
</div>
</div>
</header>
<div class="container">
<div class="card">
<!-- Related articles section - will be populated dynamically -->
<section class="related-docs">
</section>
</div>
</div>
<script src="/articles/related_articles.js"></script>
<script>loadRelatedArticles('not-found');</script>
</body>
</html>