-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Earnings Release</title>
<link href="./dist/bootwatch-v5-lux.min.css" rel="stylesheet">
<style>
.navbar {
padding: 1.1rem;
}
.body {
margin-top: 100px;
}
.chartContainer {
height: 400px;
}
#container {
overflow-y: auto;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KT67VSMZL0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KT67VSMZL0');
</script>
</head>
<body>
<div id='container'></div>
<script>
var script_with_cache_bust = document.createElement('script');
script_with_cache_bust.setAttribute('src','dist/bundle.js' + window.location.search);
document.head.appendChild(script_with_cache_bust);
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
</body>
</html>