-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
52 lines (49 loc) · 2.15 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
<!--This is what happens when you're not a web dev-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>MC Versions Info</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="stylesheet.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="Shows you information about various Minecraft versions, such as the amount of newer versions, amount of bugs fixed in future versions and age." />
</head>
<body class="light-mode">
<header>
<nav class="top-nav hide-on-large-only">
<div class="container">
<a id="nav-open" href="#" data-target="nav-mobile" class="sidenav-trigger full">
<i class="material-icons">menu</i>
</a>
</div>
</nav>
<ul id="nav-mobile" class="sidenav sidenav-fixed">
<li><a class="subheader">Select your version</a></li>
</ul>
</header>
<main>
<div class="container">
<div class="row">
<div class="col s12 m8 offset-m3 xl7 offset-xl3">
<div id="structure" class="section scrollspy">
<h2 id="version" class="header">-</h2>
You're <span id="versions-behind">-</span> behind.<br />
<span id="bugs-fixed">- bugs have</span> been fixed in future versions.<br />
This version is <span id="time">-</span> old.
</div>
</div>
</div>
</div>
<div class="fixed-action-btn">
<a id="toggle-mode" class="btn-floating btn-large">
<i class="large material-icons">brightness_high</i>
</a>
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>