-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMods.html
More file actions
70 lines (53 loc) · 2.15 KB
/
Mods.html
File metadata and controls
70 lines (53 loc) · 2.15 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/png" href="images/icon/logo.png" />
<title>Hexoria – Mods</title>
<link rel="stylesheet" href="styles.css">
<header id="header"></header>
<script src="header.js"></script>
</head>
<body>
<section id="mods">
<div class="container">
<div class="card mod-card-wrapper">
<h2 class="section__title" style="text-align:center;">Erlaubte Mods</h2>
<p class="small muted" style="text-align:center; margin-bottom:1rem;">
Diese Mods sind auf Hexoria erlaubt und bieten keinen unfairen Vorteil.
</p>
<ul id="allowed-mods" class="mod-list"></ul>
<h2 class="section__title" style="text-align:center; margin-top:3rem;">Verbotene Mods</h2>
<p class="small muted" style="text-align:center; margin-bottom:1rem;">
Diese Mods sind nicht erlaubt, da sie Gameplay beeinflussen oder unfair sind.
</p>
<ul id="banned-mods" class="mod-list"></ul>
<div class="mod-info-box">
<p class="small muted" style="text-align:center;">
❗ <strong>Wichtig:</strong>
Wenn deine Mod nicht in dieser Liste steht, eröffne bitte ein Ticket in unserem Discord,
damit wir sie prüfen können.
</p>
<div style="text-align:center; margin-top:1rem;">
<a href="https://discord.gg/cU8tt3QsUp" class="btn-green" target="_blank">
Ticket im Discord erstellen
</a>
</div>
</div>
</div>
</div>
</section>
<footer id="footer"></footer>
<script src="footer.js"></script>
<script>
const currentPage = window.location.pathname.split("/").pop();
document.querySelectorAll(".nav-link").forEach(link => {
if (link.getAttribute("href") === currentPage) {
link.classList.add("active");
}
});
</script>
<script src="mods.js"></script>
</body>
</html>