-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (112 loc) · 5.86 KB
/
index.html
File metadata and controls
131 lines (112 loc) · 5.86 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AXR — Axos Republic</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="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">AXR</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="laws.html">Law</a>
<a href="news.html">News</a>
<a href="military.html">Military</a>
<button class="theme-toggle" id="themeToggle">⏾</button>
</div>
</div>
</nav>
<!-- Header -->
<header class="hero">
<div class="hero-content">
<img src="images/Axian Wreath wt.png" alt="AXR Emblem" class="hero-emblem">
<div class="hero-text">
<h1>Axos Republic</h1>
<p class="subtitle">Official Website of the AXR</p>
</div>
</div>
</header>
<main class="content">
<!-- Welcome -->
<section class="card">
<h2>Welcome</h2>
<p>
Welcome to the official AXR website! The Axos Republic is a Minecraft empire based on the server
<strike>REDACTED</strike>. Founded on June 15th 2025 by <strong>Lordos Axos</strong> (AxoFX), the capital of the AXR is Axford —
one of the largest and most sophisticated cities yet. It is the administrative center of operations for the entire AXR and its state-republics.
</p>
</section>
<!-- Ranking -->
<section class="card">
<h2>Ranking</h2>
<p>
The AXR has a complex ranking system based around the seperation of miltary, and democracy. The AXR is primarily led by a group known as <strong>The Sentry</strong>, consisting of the
<strong>Lord, Admiral, and Allegiant General</strong>, they do most of the paperwork and diplomacy. Working with them are the <strong>Presidents</strong>, each state-republic of the AXR has its own President, and usually seasonal-elections to rotate them. Each state-republic is divided into <strong>Oblasts</strong>, smaller regions with their own <strong>Regional Sub-Leader</strong>. Regional Sub-Leaders are responsible for making their region a nicer place, and make it easier for Presidents to focus on more important tasks. Alongside this 'Democratic Spine' is the 'Military Spine', the AXR's Military is led by the <strong>Militant Director</strong>, who advises the <strong>Generals</strong> on how to lead their legions. Each Legion has 3 <strong>Commanders</strong>, each focusing on their division with its own speciality:
</p>
<ul class="styled-list">
<li>Ground Force</li>
<li>Air Force</li>
<li>Sea Force</li>
</ul>
<p>Each division consists of <strong>Soldiers</strong>, who help defend the countries and their people from external threats. However, the AXR is generally a safe place so the soldiers are put to use in other fields of work such as construction or mining.</p>
</section>
<!-- Administrative Units -->
<section class="card">
<h2>Administrative Units</h2>
<p>
Each division consists of <strong>Soldiers</strong>, who help defend the countries and their people from external threats. However, the AXR is generally a safe place so the soldiers are put to use in other fields of work such as construction or mining.
</p>
<ul class="styled-list">
<li><strong>Red</strong> — Small, 2 lanes</li>
<li><strong>Orange</strong> — Large, 4 lanes</li>
<li><strong>Yellow</strong> — Speedway, 2 ice tracks</li>
<li><strong>Unclassed</strong> — Rare, usually 2 lanes, no stripe</li>
</ul>
</section>
<!-- Media -->
<section class="card">
<h2>Media</h2>
<p>
The AXR has a group known as the <strong>Axian Media Coalition</strong>, who produce media such as books, videos, etc. Most of these are publicly availible in libraries and shops accross the AXR. Some of the content has copyright on it so please don't violate it. The AXR also has its own classified media, such as plans for military operations or black projects, these documents will be <strong>clearly marked with a mark saying 'CLASSIFIED LVL#'</strong>, the higher the "LVL" (eg. LVL3, LVL4, LVL5) the more classified it is. If you come accross any you are not supposed to have access to delete them from your computer and notify the Sentry (or any other high-ranking officer).
</p>
</section>
<!-- Contact -->
<section class="card">
<h2>Consult</h2>
<p>You can contact the AXR via the following email addresses:</p>
<ul class="styled-list">
<li><strong>Main AXR:</strong> AxosUnion@outlook.com</li>
<li><strong>Lord:</strong> AxoWasTaken@outlook.com</li>
<li><strong>Admiral:</strong> Currently Unavailable</li>
<li><strong>Alligant General:</strong> Currently Unavailable</li>
</ul>
</section>
</main>
<footer class="footer">
<p>Content on this site is licensed under CC BY-NC-SA 3.0 unless otherwise noted.</p>
<p>Not an official Minecraft website; nor are we associated with Mojang or Microsoft.</p>
</footer>
<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>