forked from etkmlm/CoreLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.95 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="web/css/site.css" />
<link rel="icon" href="web/images/logo.png" />
<title>Core Launcher</title>
<meta name="google-site-verification" content="sgcMEWtJsTpILbadoZxEPp3r24Z41Bm8FtJHmKRq_oM" />
<script>
window.onload = function(){
fetch("https://laeben-update-default-rtdb.europe-west1.firebasedatabase.app/apps/clauncher/latestFile.json")
.then(a => a.json().then(ver => {
var jarbtn = document.getElementById("jar");
jarbtn.href = ver;
}));
};
</script>
</head>
<body>
<section class="display-sec head-sec">
<div class="one flex-xcenter flex-ycenter">
<div class="precious-pane">
<h1>Open, customize, play.</h1>
<a style="background: #33b2f533;" id="installer" href="https://github.com/etkmlm/CoreLauncherInstaller/releases/download/1.0/CoreLauncherInstaller.exe" class="center">Installer</a>
<br/>
<a style="background: #33b2f533;" id="jar" href="https://github.com/etkmlm/CoreLauncher/releases/download/beta1.1.2/CoreLauncher-1.1.2.jar" class="center">Portable</a>
<br/>
<a style="background: #33b2b533;" href="https://github.com/etkmlm/CoreLauncher" class="center">Wiki and Source</a>
</div>
</div>
<div class="two">
<img class="logo" src="web/images/logo.png" alt=""/>
<h1>Core Launcher</h1>
<div class="badges">
<img src="web/images/curse.png" alt="l" />
<img src="web/images/forge.png" alt="l" />
<img src="web/images/fabric.png" alt="l" />
<img src="web/images/quilt.png" alt="l" />
<img src="web/images/optifine.png" alt="l" />
</div>
</div>
</section>
</body>
</html>