-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowse.html
More file actions
76 lines (71 loc) · 2.98 KB
/
browse.html
File metadata and controls
76 lines (71 loc) · 2.98 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
<!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/browse.css"/>
</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" class="top-nav">
<img src="icons/discord.png" alt="Logo" class="logo"/>
</a>
</header>
<main class="button-grid-wrapper">
<div class="button-grid-container">
<div class="grid-header">
<h2 class="grid-title" id="header">Loading</h2>
<div class="grid-sub">
<h2>We share content as it is originally/when we get it (cracks, etc.), and therefore it may contain undesirable telemetry or even malware.</h2>
<h2>Always run software you aren't 100% sure is safe in a VM!</h2>
</div>
<div class="container-navigation">
<label>
<input id="search-bar" type="text" placeholder="Search..." />
</label>
<button id="sort-toggle" style="margin-left: 10px;">Sort: A → Z</button>
</div>
</div>
<div class="button-grid" id="entry-grid">
<!--filled from browse.js-->
</div>
</div>
</main>
<script src="js/archive.js"></script>
<script src="js/featured-clients.js"></script>
<script src="js/browse.js"></script>
</body>