This repository has been archived by the owner on Jan 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (47 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head lang="en">
<meta charset="UTF-8">
<title>Swell Dashboard</title>
<link href="node_modules/bootswatch/flatly/bootstrap.min.css" type="text/css" rel="stylesheet"/>
<link href="node_modules/vis/dist/vis.min.css" type="text/css" rel="stylesheet"/>
<link href="assets/css/styles.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<!--<div id="graph1"></div>-->
<div class="container">
<div class="row">
<div class="col-sm-4">
<div id="graph1"></div>
</div>
<div class="col-sm-4">
<div id="graph2"></div>
</div>
<div class="col-sm-4">
<div id="graph3"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div id="graph4"></div>
</div>
<div class="col-sm-4">
<div id="graph5"></div>
</div>
<div class="col-sm-4">
<div id="graph6"></div>
</div>
</div>
</div>
<!-- The Modernizr Library (Generated with: ./bin/modernizr -c lib/config-all.json) -->
<!--<script src="node_modules/modernizr/modernizr.js"></script>-->
<!-- The jQuery library -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<!-- The Moment.js library -->
<script src="node_modules/moment/moment.js"></script>
<!-- The Vis.js library -->
<script src="node_modules/vis/dist/vis.js"></script>
<!-- Including our own JavaScript file -->
<script src="assets/js/script.js"></script>
</body>
</html>