-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
44 lines (40 loc) · 1.46 KB
/
offline.html
File metadata and controls
44 lines (40 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Graphite | Offline</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta name="keywords" content="graphite,bot,discord,discordbot,rpg,minigames,moderation,fun,automoderation,discord bot,discord music bot,music bot,multipurpose bot,discord bot command">
<meta name="description" content="Set up Twitch, moderation, fun, role-management and music features.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/img/graphite-raw.svg">
<link rel="stylesheet" href="css/defaults.css">
<link rel="stylesheet" href="css/error-page.css">
<script src="./website-data/jquery-3.6.0.min.js"></script>
<script>
$(() => {
let con = document.getElementById("message");
let urlParams = new URLSearchParams(window.location.search);
con.text = urlParams.get("msg");
});
</script>
</head>
<body>
<header id="header">
<!--#include virtual="/header.html" -->
</header>
<main id="error">
<div id="error-center">
<h1 class="glitch" data-glitch="ERROR">ERROR</h1>
<a id="message"></a>
<div id="actions">
<a href="/redirect/discord" target="_blank" rel="noopener"><img alt="Discord" src="img/discord.svg"/>Support server</a>
<a href="/">Home</a>
</div>
</div>
</main>
<footer id="footer">
<!--#include virtual="/footer.html" -->
</footer>
</body>
</html>