-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeview.html
More file actions
72 lines (60 loc) · 2.49 KB
/
codeview.html
File metadata and controls
72 lines (60 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Wonderland Central</title>
<meta content="Wonderland Central" property="og:title" />
<meta content="Wonderland is the #1 place for all your Minecraft utilities" property="og:description" />
<meta content="https://wonderlandlibrary.github.io" property="og:url" />
<meta content="https://wonderlandlibrary.github.io/icons/wonderland_big.png" property="og:image" />
<link rel="icon" href="https://wonderlandlibrary.github.io/icons/wonderland_tiiiiny.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
rel=" stylesheet">
<link rel="stylesheet" href="css/base.css"/>
<link rel="stylesheet" href="css/particles.css"/>
<link rel="stylesheet" href="css/codeview.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/monaco-editor@0.52.2/dev/vs/loader.js"></script>
</head>
<body>
<div class="bg">
<div class="page-bg"></div>
<div class="animation-wrapper">
<div class="particle particle-1"></div>
<div class="particle particle-2"></div>
<div class="particle particle-3"></div>
<div class="particle particle-4"></div>
</div>
</div>
<header>
<div class="left-section">
<a class="site-name" href="/">Wonderland Central</a>
<nav class="top-nav">
<div class="dropdown">
<a href="#">Featured Clients</a>
<ul class="dropdown-menu" id="client-dropdown"></ul>
</div>
<div class="dropdown">
<a href="#">Archive</a>
<ul class="dropdown-menu" id="archive-dropdown"></ul>
</div>
</nav>
</div>
<a href="https://discord.gg/BZhQFWYbhR">
<img src="icons/discord.png" alt="Logo" class="logo"/>
</a>
</header>
<div class="loading-wrapper" id="loading-wrapper">
<div class="loading-box">
<h1 id="loading-text">Loading...</h1>
</div>
</div>
<div class="content-wrapper" id="content-wrapper">
</div>
<script src="js/featured-clients.js"></script>
<script src="js/archive.js"></script>
<script src="js/codeview.js"></script>
</body>