-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (59 loc) · 2.46 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<!-- DIGG vs BTC widget -->
<script src="digg-vs-btc-widget.js"></script>
<!-- Google charts -->
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<!-- Pie chart and Sett table script -->
<script type="text/javascript" src="script.js"></script>
<title>Diggmetrics</title>
</head>
<body onload="renderSettTable()">
<!-- Navbar -->
<nav class="navbar navbar-light bg-dark">
<a class="navbar-brand text-light" id="navbar" href="#">
<img src="https://badger.finance/wp-content/uploads/2021/01/digg_logo-01.png" alt="" width="30" height="30"
class="d-inline-block align-text-top">
Diggmetrics
</a>
</nav>
<div class="container">
<!-- DIGG vs BTC chart -->
<div class="row mt-2 mb-2" >
<coingecko-coin-compare-chart-widget coin-ids="bitcoin,digg" currency="usd" locale="en"/>
</div>
<div class="row">
<!-- DIGG ownership pie chart -->
<div class="col col-md-6">
<div class="card" id="chart-card">
<figure class="text-center mt-2">
<h4>DIGG ownership</h4>
</figure>
<div id="piechart" class="chart"></div>
</div>
</div>
<!-- DIGG setts -->
<div class="col col-md-6">
<div class="card col-md-12">
<figure class="text-center mt-2">
<h4>Stake in setts</h4>
</figure>
<div id="sett-table"></div>
<div class="text-center">
<a class="btn btn-dark" href="http://app.badger.finance" target="_blank">Stake now</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>