-
Notifications
You must be signed in to change notification settings - Fork 15
/
sources.html
51 lines (48 loc) · 1.42 KB
/
sources.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>EaglercrackX</title>
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<nav class="nav">
<div class="logo">
<img src="/assets/eaglercraft.jpg" alt="Logo">
<a href="/index.html"><h1>EaglercrackX</h1></a>
</div>
<div class="spacer"></div>
<ul class="navElements">
<li class="active">
<a href="/index.html">Clients</a>
</li>
<li>
<a href="/sources.html">Sources</a>
</li>
<li>
<a href="/other.html">Others</a>
</li>
</ul>
<div style="margin: 0 30px 0 0;">
<a class="button" href="https://discord.gg/qAbTAAv6dU">
Join the Discord
</a>
</div>
</nav>
</head>
<body>
<main class="cards">
<h1 class="cards__heading">Soon...</h1>
<div class="cards cards">
<div class="cards__inner">
<div class="cards__card card">
<h2 class="card__heading">Looks like this page is coming soon...</h2>
<ul role="list" class="card__bullets flow">
<li><a href="/index.html">Go home</a></li>
</ul>
</div>
<div class="overlay cards__inner"></div>
</div>
</main>
</body>
</html>