-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
53 lines (40 loc) · 1.83 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
<!DOCTYPE HTML>
<html>
<head>
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="lib/jquery-ui/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="css/strict.css">
<link rel="stylesheet" type="text/css" href="css/network.css">
<script data-main="js/app" src="lib/require/require.js"></script>
</head>
<body>
<div class="network-viewer container" id="main_page">
<!-- Page header for the webpage -->
<div class="row page-header">
<!-- Title of application -->
<h1 class="col-md-8">NetworkViewer <small>Interactive Network Visualization</small></h1>
<!-- Button trigger modal -->
<button type="button" class="btn btn-default btn-lg col-md-1" data-toggle="modal" data-target="#myModal" style="margin-top: 20px; float: right;">
<span class="glyphicon glyphicon-cog" aria-hidden="true"></span>
</button>
</div>
<!-- Main Application window -->
<div class="row" id="app_container">
<!-- Left panel for trajectory analysis -->
<div class="col-md-3">
<!-- Init table for trajectory analysis. -->
<table class="table table-hover row">
<tbody id = "tablebody">
<thead>
<th colspan="1">Trajectory #</th>
<th colspan="1">Score</th>
</thead>
</tbody>
</table>
</div>
<!-- Viewer panel -->
<div class="col-md-9" id="network_viewer"></div>
</div>
</div>
</body>
</html>