-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 2.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<title>Dependency Drift Tracker</title>
<link rel="stylesheet" href="src/scss/styles.scss">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-md">
<a class="navbar-brand" href="#">Dependency Drift Tracker</a>
</div>
</nav>
<div class="container-md mt-3">
<div class="row align-items-start">
<div class="col col-md-3">
<nav>
<ul class="nav nav-pills flex-column" id="nav">
</ul>
</nav>
</div>
<div class="col col-md-9">
<h1 id="title"></h1>
<div class="container-md column-gap-3 py-3 gx-0">
<div class="row">
<div class="col-md-6">
<div class="card text-bg-secondary">
<div class="card-body">
<h5 class="card-title">Drift</h5>
<p class="card-text fs-2" id="driftSummary"></p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card text-bg-secondary mt-1 mt-md-0">
<div class="card-body">
<h5 class="card-title">Pulse</h5>
<p class="card-text fs-2" id="pulseSummary"></p>
</div>
</div>
</div>
</div>
</div>
<h2 class="pt-2">Dependency Drift</h2>
<p class="fw-light">drift representing "dependency drift"; the time between the release of the currently used and latest (stable) available versions of a dependency. Measured in "libyears".</p>
<canvas id="driftChart"></canvas>
<h2 class="pt-3">Dependency Pulse</h2>
<p class="fw-light">pulse representing "pulse check", an indication of a dependency's activity; the time since the release of the latest available version of a dependency (including pre-release). Measured in "libyears".</p>
<canvas id="pulseChart"></canvas>
<h2 class="pt-3">Last run result</h2>
<table id="rawResult" class="table table-striped">
</table>
</div>
</div>
</div>
<script src="src/web.js" type="module"></script>
</body>
</html>