-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSupport.html
More file actions
65 lines (54 loc) · 1.79 KB
/
Support.html
File metadata and controls
65 lines (54 loc) · 1.79 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="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 – Support</title>
<link rel="stylesheet" href="styles.css">
<header id="header"></header>
<script src="header.js"></script>
</head>
<body>
<h3 style="margin-top:2rem; text-align:center;">Ticket‑Arten</h3>
<div class="ticket-types-column">
<div class="ticket-type ticket-blue">
<h4>🔵 Discord Support</h4>
<ul class="small muted">
<li>Ein Spieler melden im Discord</li>
<li>Fragen allgemein über den Server</li>
<li>Team / Content beitreten</li>
<li>Idee für Hexoria</li>
</ul>
</div>
<div class="ticket-type ticket-green">
<h4>🟢 Minecraft Support</h4>
<ul class="small muted">
<li>Fragen Über den Minecraft Network</li>
<li>Ein Spieler melden in Minecraft</li>
<li>Mods prüfen lassen </li>
<li>Idee für den Minecraft Network</li>
</ul>
</div>
<div class="ticket-type ticket-yellow">
<h4>🟡 Bug Report</h4>
<ul class="small muted">
<li>Problem bei den Bot im Discord</li>
<li>Minecraft Bugs / Problem</li>
<li>Webseite Bugs / Problem</li>
</ul>
</div>
</div>
<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>