This repository has been archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
54 lines (50 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<link rel='shortcut icon' type='image/x-icon' href="favicon.ico"/>
<title>AdoptOpenJDK Download Dashboard</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="text-center">
<a href="./"><img src="./assets/Adopt_logo.svg" height="75em;"></img></a>
<h2>Download Stats</h2>
</div>
</div>
<div class="row text-center">
<div class="col">
<div class="counter">
<i class="fa fa-download fa-2x"></i>
<h2 class="timer count-title count-number" id="counter" data-to="0" data-speed="1500">0</h2>
<p class="count-text ">Total Downloads/Docker pulls Ever</p>
</div>
</div>
</div>
<div class="row text-center" id="versions">
<script id="hidden-template" type="text/x-custom-template">
<div class="col">
<a href="./release.html" id="link">
<div class="counter">
<i class="fa fa-download fa-2x"></i>
<h2 class="timer count-title count-number" id="counter" data-to="0" data-speed="1500">0</h2>
<p class="count-text ">Downloads</p>
</div>
</a>
</div>
</script>
</div>
<div class="text-center externals">
<h4>Other download stats</h4>
<a href="./docker.html"><img class="external-logo" src="./assets/docker.svg" height="100em;"></img></a>
<a href="./homebrew.html"><img class="external-logo" src="./assets/homebrew.svg" height="100em;"></img></a>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="./common.js"></script>
<script src="./index.js"></script>
</html>