-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (63 loc) · 3.76 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎮</text></svg>">
<title>SmallGameGodot</title>
<style>
html {
scroll-behavior: smooth;
}
@media (min-width: 767px) {
#download {
max-width: 50%;
}
}
</style>
</head>
<body class="bg-dark">
<div class="container my-5 py-md-5 text-center">
<h1 class="text-light">SmallGameGodot</h1>
<div class="w-50 mw-25 m-auto">
<!-- Play -->
<div class="mt-5 mb-4">
<a class="btn btn-lg btn-success" href="play/"><i class="fas fa-gamepad"></i> Play Online</a>
</div>
<p class="text-light"><i class="fas fa-mouse"></i> Mouse recommended.</p>
<!-- Download -->
<div id="download" class="mt-2 mb-2 m-auto" role="group" aria-label="Download">
<a class="btn btn-lg btn-block btn-primary mb-2"
href="https://raw.githubusercontent.com/MisterL2/SmallGameGodot/master/Releases/Windows.zip"
rel="nofollow noopener noreferrer"><i class="fab fa-windows"></i> Download for Windows</a>
<a class="btn btn-lg btn-block btn-primary"
href="https://raw.githubusercontent.com/MisterL2/SmallGameGodot/master/Releases/macOS.zip"
rel="nofollow noopener noreferrer"><i class="fab fa-apple"></i> Download for macOS</a>
</div>
</div>
<!-- Info -->
<div id="changelogview"></div>
<div class="mt-5 btn-group" role="group">
<a class="btn text-white btn-outline-info"
id="changelog" data-toggle="collapse" href="#changelogNotice" role="button" aria-expanded="false" aria-controls="changelogNotice"><i class="fas fa-code"></i> Changelog</a>
<a class="btn text-white btn-outline-info" href="https://github.com/MisterL2/SmallGameGodot"
rel="nofollow noopener noreferrer" target="_blank"><i class="fab fa-github"></i> GitHub</a>
</div>
<div class="collapse" id="changelogNotice">
<div id="changelogCard" class="card card-body mt-3 bg-dark">
<div id="changelogContent" class="text-light">
<div class="spinner-border text-light" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF" crossorigin="anonymous"></script>
<script src="js/main.min.js"></script>
</body>
</html>