-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (95 loc) · 4.27 KB
/
Copy pathindex.html
File metadata and controls
110 lines (95 loc) · 4.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UCA — United Colonies of Arisk</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">UCA</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>
<a href="/-pages/dev/">Dev</a>
<button class="theme-toggle" id="themeToggle">⏾</button>
</div>
</div>
</nav>
<!-- Header -->
<header class="hero">
<div class="hero-content">
<img src="/-assets/Axian Wreath wt.png" alt="AXR Emblem" class="hero-emblem">
<div class="hero-text">
<h1>United Colonies of Arisk</h1>
<p class="subtitle">Official Website of the UCA</p>
</div>
</div>
</header>
<main class="content">
<!-- Welcome -->
<section class="card">
<h2>Welcome</h2>
<p>
Welcome to the official UCA website! The United Colonies of Arisk is a Minecraft alliance based on the server
<strike>REDACTED</strike>. The capital of the UCA is Hillside, possibly the oldest and largest country on the server.
</p>
</section>
<!-- Ranking -->
<section class="card">
<h2>Governance</h2>
<p>
The UCA is led as a democracy by the Presidents (sometimes other titles) of the countries it consists of.
Each President has a <i>Secretary</i> (yet again sometimes another title), who acts as an assistant for them.
The UCA has one <i>Militant Director</i> who leads the soldiers from all countries. Each President also has a number of
<i>Regional Sub-Leaders</i>, who lead the Oblasts (regions) of each country.
</p>
</section>
<!-- Media -->
<section class="card">
<h2>Media</h2>
<p>
The UCA has a group known as the <strong>Axian Media Coalition</strong>, who produce media such as books, videos, etc. Most of these are publicly available in libraries and shops across the UCA. Some of the content has copyright on it so please don't violate it. The UCA 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 across any you are not supposed to have access to delete them from your computer and notify Lordos Axos (or any other high-ranking officer).
</p>
</section>
<!-- Contact -->
<section class="card">
<h2>Consult</h2>
<p>You can contact the UCA via the following email addresses:</p>
<ul class="styled-list">
<li><strong>Main UCA:</strong> AxosUnion@outlook.com</li>
<li><strong>Lord:</strong> AxoWasTaken@outlook.com</li>
<li><strong>Admiral:</strong> TierGold1@outlook.com</li>
<li><strong>Allegiant General:</strong> Currently Unavailable</li>
</ul>
</section>
</main>
<footer class="footer">
<p>Content on this site is licensed under <a href="https://AxosUnion.github.io/LICENSE">Attribution 4.0 International</a> unless otherwise noted. All rights reserved.</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>