forked from AdoptOpenJDK/openjdk-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.html
27 lines (24 loc) · 1.21 KB
/
version.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
<!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 per version for a release</h2>
</div>
<div class="chart-container" style="position: relative; height:40vh; width:80vw">
<canvas id="graph"></canvas>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.min.js"></script>
<script src="./version.js"></script>
</body>
</html>