-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (59 loc) · 1.62 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
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>IPO tables</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="style.css" />
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="bower_components/lodash/dist/lodash.js"></script>
<script src="bower_components/backbone/backbone.js"></script>
<script src="vendor/levelgraph.js"></script>
<script src="vendor/levelgraph-jsonld.js"></script>
<script src="app.js"></script>
</head>
<body>
<div class="row">
<div id="header" class="col-md-10 col-md-offset-1">
<h1>IPO tables</h1>
<h2></h2>
<p></p>
</div>
</div>
<div id="directory" class="row">
<div class="col-md-4 col-md-offset-2">
<h3>Modules</h3>
<ul id="mlist"></ul>
</div>
<div class="col-md-4">
<h3>Things</h3>
<ul id="tlist"></ul>
</div>
</div>
<div id="module" class="row">
<div class="col-md-3 col-md-offset-2">
<h3>Inputs</h3>
<ul class="input"></ul>
</div>
<div class="col-md-3">
<h3>Process</h3>
<div class="process"></div>
</div>
<div class="col-md-3">
<h3>Outputs</h3>
<ul class="output"></ul>
</div>
</div>
<div id="thing" class="row">
<div class="col-md-4 col-md-offset-2">
<h3>Output of</h3>
<ul class="output"></ul>
</div>
<div class="col-md-4">
<h3>Onput of</h3>
<ul class="input"></ul>
</div>
</div>
</body>
</html>