-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·54 lines (49 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PLOS Cloud Explorer</title>
<link rel="icon" type="image/png" href="img/favicon.png">
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/d3.min.js"></script>
<script src="js/dimple.v2.0.0.min.js"></script>
<script src="js/d3.layout.cloud.js"></script>
<script src="js/colorbrewer.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div id="tutorial">
</div>
<div id="wrapper">
<div id ="header">
<h2 id="main-title">PLOS Cloud Explorer</h2>
<h5 id="beta">beta</h5>
<div id="headerbuttons">
<a id="about-link" target="blank" href ="https://github.com/cmgerber/PLOS_Cloud_Explorer/blob/master/README.md">about</a>
</div>
</div>
<div id='tree'></div>
<div id="dashboard">
<div id='dashtitle'></div>
<div id="chartContainer">
<div id="wordcloud"></div>
<div id="chartTop">
</div>
<div id="chartHisto">
</div>
</div>
<div id="chartFinder">
</div>
</div>
<div id="tooltip">
</div>
</div>
<!-- <div id='container'></div>
<div id="dashboard">
dashboard
<div id="chartContainer">
</div>
</div> -->
</body>
<script src="js/script.js"></script>
</html>