-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (67 loc) · 2.5 KB
/
index.html
File metadata and controls
73 lines (67 loc) · 2.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Typescript Tradingview Embed by nordible</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="jumbotron text-center">
<h2>Typescript Tradingview Embed</h2>
<p>A ready to use Typescript Tradingview Embed npm module</p>
<p><a href="https://github.com/nordible/typescript-tradingview-embed/blob/master/README.md">Learn more </a></p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3>TradingView Embeds</h3>
<p>All <a href="https://www.tradingview.com/widget/">TradingView Embeds</a> supported</p>
</div>
<div class="col-sm-4">
<h3>TS+JS</h3>
<p>Can be used in typescript & js projects out of the box</p>
</div>
<div class="col-sm-4">
<h3>npm</h3>
<p>install as an npm module <code>npm i typescript-tradingview-embed</code></p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<h3>Open source</h3>
<p>This npm module is <a href="https://github.com/nordible/typescript-tradingview-embed">open source</a></p>
</div>
<div class="col-sm-4">
<h3>Contribute</h3>
<p><a href="https://github.com/nordible/typescript-tradingview-embed/pulls">Contributions</a> are most welcome!</p>
</div>
<div class="col-sm-4">
<h3>TSlint</h3>
<p>Out of the box <code>tslint-config-airbnb</code> supported</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<h3>Coffee</h3>
<p>We love <a href="https://www.buymeacoffee.com/nordible"> coffee</a></p>
</div>
<div class="col-sm-4">
<h3>Credit</h3>
<p>Thanks to <a href="https://github.com/xnr-k/react-tradingview-embed">xnr-k</a></p>
</div>
</div>
<footer>© <a href="https://nordible.com/">nordible</a></footer>
</div>
</body>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-109226220-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-109226220-1');
</script>
</html>