-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
79 lines (70 loc) · 3.97 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
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="/static/manifest.json">
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="The Top Ten CryptoCurrencies | CryptoDash">
<meta itemprop="description" content="A real-time dashboard that displays the top ten cryptocurrencies based on currency price, market captilization and overall circulating supply.">
<meta itemprop="image" content="https://www.cryptodash.in/static/meta_landing_screen.png">
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@djirdehh">
<meta name="twitter:title" content="The Top Ten CryptoCurrencies | CryptoDash">
<meta name="twitter:description" content="A real-time dashboard that displays the top ten cryptocurrencies based on currency price, market captilization and overall circulating supply.">
<meta name="twitter:creator" content="@djirdehh">
<meta name="twitter:image" content="https://www.cryptodash.in/static/meta_landing_screen.png">
<meta name="twitter:image:alt" content="The Top Ten CryptoCurrencies | CryptoDash">
<!-- Open Graph data -->
<meta prefix="og: http://ogp.me/ns#" property="og:title" content="The Top Ten CryptoCurrencies | CryptoDash"/>
<meta prefix="og: http://ogp.me/ns#" property="og:description" content="A real-time dashboard that displays the top ten cryptocurrencies based on currency price, market captilization and overall circulating supply."/>
<meta prefix="og: http://ogp.me/ns#" property="og:image" content="https://www.cryptodash.in/static/meta_landing_screen.png" />
<meta prefix="og: http://ogp.me/ns#" property="og:url" content="https://www.cryptodash.in" />
<meta prefix="og: http://ogp.me/ns#" property="og:site_name" content="CryptoVue"/>
<meta prefix="og: http://ogp.me/ns#" property="og:type" content="website"/>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:200,400,700" rel="stylesheet">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="/static/img/icons/apple-touch-icon.png">
<link rel="shortcut icon" href="/static/favicon-32x32.png" type="image/x-icon">
<link rel="icon" href="/static/favicon-32x32.png" type="image/x-icon">
<link rel="manifest" href="/static/img/icons/manifest.json">
<link rel="mask-icon" href="/static/img/icons/safari-pinned-tab.svg" color="#270e30">
<link rel="shortcut icon" href="/static/img/icons/favicon.ico">
<meta name="apple-mobile-web-app-title" content="CryptoDash">
<meta name="application-name" content="CryptoDash">
<meta name="msapplication-config" content="/static/img/icons/browserconfig.xml">
<meta name="theme-color" content="#270e30">
<title>CryptoDash</title>
<noscript>
<h4 style="font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica;">
Sorry, JavaScript needs to be enabled in order to run this application :(
</h4>
</noscript>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118793677-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118793677-1');
</script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/service-worker.js').then(registration => {
console.log('service worker registration was successful')
}, err => {
console.log('service worker registration failed')
});
});
}
</script>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>