-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·61 lines (58 loc) · 2.79 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
<!DOCTYPE html>
<!--
Copyright (C) 2016 Ericka Menchen-Trevino & contributors, [email protected]
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-->
<html>
<head>
<button id='backToHomePage' class="btn btn-primary">Back</button>
<meta charset="utf-8" />
<title>Tag history</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/d3-context-menu.css" />
<link rel="stylesheet" type="text/css" href="vendor/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="vendor/css/bootstrap-theme.min.css" />
<link rel="stylesheet" type="text/css" href="vendor/css/bootstrap-datepicker3.css" />
<link rel="stylesheet" type="text/css" href="vendor/css/bootstrap-table.css">
<link rel="stylesheet" type="text/css" href="vendor/css/ion.rangeSlider.css">
<link rel="stylesheet" type="text/css" href="vendor/css/ion.rangeSlider.skinHTML5.css">
<script src="js/lib/jquery.js" type="text/javascript"></script>
<script data-main="js/app/main.js" src="js/lib/require.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div id="main">
<div id="visualizations">
<div id="cards"></div>
<div id="loader"></div>
<div class="container">
<div class="col-md-6 col-md-offset-3">
<div id="title"></div>
</div>
</div>
<div class="container">
<div class="col-md-10 col-md-offset-1">
<div id="above_visual"></div>
</div>
</div>
<div class="container">
<div id="visual_div"></div>
</div>
</div>
<div id="below_visual"></div>
</div>
</div>
</div>
</body>
</html>