-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (47 loc) · 1.72 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, initial-scale=1.0">
<title>Bitcoin scaling simulator</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<style>
.caption {
font-size: 12px;
}
</style>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header mdl-layout--no-drawer-button">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Bitcoin scaling simulator</span>
</div>
</header>
<main class="mdl-layout__content">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--12-col">Simulate behaviour of the Bitcoin Blockchain with different base values/constants. Note that the simulator will only show upper bounds, ie. blocks are always full and the Blockchain working on full capacity.</div>
</div>
<div id="content">
<noscript>You need to enable JavaScript to use the Bitcoin scaling simulator</noscript>
</div>
</main>
<footer class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
<div class="mdl-logo">Bitcoin scaling simulator</div>
<ul class="mdl-mini-footer__link-list">
<li><a target="_blank" href="https://github.com/lambdasoup/btcscalingsim">GitHub & Donate</a></li>
</ul>
</div>
</footer>
</div>
<!-- elm -->
<script src="elm.js"></script>
<script>
var div = document.getElementById('content');
Elm.Main.embed(div);
</script>
</body>
</html>