-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (60 loc) · 2.42 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="minimum-scale=1,initial-scale=1,width=device-width,shrink-to-fit=no,user-scalable=no,viewport-fit=cover">
<title>Timechain Cube</title>
<!-- SEO -->
<meta property="og:title" content="Timechain Cube"/>
<meta property="og:image" content="/public/android-chrome-512x512.png"/>
<meta property="og:description"
content="Bitcoin and Mempool dashboard style displayed on cube "/>
<!-- <meta name="twitter:site" content="@timechaincube /> -->
<meta name="twitter:title" content="Timechain Cube" />
<meta name="twitter:description" content="Touch a block with bitcoin info and stats" />
<meta name="twitter:image" content="/public/android-chrome-512x512.png" />
<link
href="https://fonts.googleapis.com/css2?family=Ropa+Sans&display=swap"
rel="stylesheet"
>
<link rel="manifest" href="/manifest.webmanifest">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="mobile-web-app-capable" content="yes"><meta name="mobile-web-app-status-bar-style" content="black-translucent">
<meta name="theme-color" content="#000000" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-79G77S7YEV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-79G77S7YEV');
</script>
</head>
<body>
<canvas class="webgl"></canvas>
<nav>
<a href="/"> Timechain Cube </a>
<ul>
<li><a href="/mempool/">Mempool</a></li>
</ul>
</nav>
<footer>
<ul>
<a href="/blocks/">Blocks</a>
<a href="https://btcpay0.voltageapp.io/api/v1/invoices?storeId=5gyLELsn3JvD51Af1sPMGPLpLcsKNG2XviAV7pjrDPZc¤cy=USD">Donate</a>
</ul>
</footer>
<!-- <h1 class="title">grab the cube</h1> -->
<script type="module" src="/main.js"></script>
</body>
<!-- <script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js', { scope: './' })
.then((reg) => {
console.log('Service worker registered.', reg);
});
}
</script> -->
</html>