-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
65 lines (58 loc) · 2.43 KB
/
Copy path404.html
File metadata and controls
65 lines (58 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AX: / ...</title>
<link rel="icon" type="image/png" href="/-assets/favicon.png">
<link rel="stylesheet" href="/-css/style.css">
<link rel="canonical" href="https://axosunion.github.io">
</head>
<body>
<!-- Navigation -->
<nav class="nav-container">
<div class="nav">
<a class="nav-logo" href="/index.html" title="Probable Error 404">...</a>
<div class="nav-links">
<a href="/index.html">Home</a>
<a href="/-pages/laws.html">Law</a>
<a href="/-pages/news.html">News</a>
<a href="/-pages/military.html">Military</a>
<button class="theme-toggle" id="themeToggle">⏾</button>
<img src="/-assets/Axian Wreath wt.png" alt="AXR Wreath" width="80" height="auto" style="border:none;">
</div>
</div>
</nav>
<main>
<section class="card" color="#f2f2f2">
<ul>
<li>Filepath: AX: / ...</li>
<li title="Non AXR persons and AXR civilians">Requirement: LVL0</li>
<li>Status: Active</li>
</ul>
<p>Right now you are in the root, most likely due to an Error 404. Please pick one of the directories or files below, or go back to the <a href="https://AxosUnion.github.io">home page</a>.</p>
<ul>
<li><a href="https://AxosUnion.github.io/AXR/">AX: / AXR / ...</a></li>
<li><a href="https://AxosUnion.github.io/AXU/">AX: / AXU / ...</a></li>
<li><a href="https://AxosUnion.github.io/README.md">AX: / README.md</a></li>
</ul>
</section>
</main>
<script>
const themeToggle = document.getElementById('themeToggle');
const htmlElement = document.documentElement;
// Load theme preference from localStorage
const currentTheme = localStorage.getItem('theme') || 'dark';
if (currentTheme === 'light') {
htmlElement.classList.add('light-mode');
themeToggle.textContent = '☀︎';
}
themeToggle.addEventListener('click', () => {
htmlElement.classList.toggle('light-mode');
const isLight = htmlElement.classList.contains('light-mode');
localStorage.setItem('theme', isLight ? 'light' : 'dark');
themeToggle.textContent = isLight ? '☀︎' : '⏾';
});
</script>
</body>
</html>