-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (67 loc) · 5.86 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
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html>
<head>
<title>Disquo</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="./stylesheet.css" />
</head>
<body>
<div id="main_container">
<ul id="selection_bar">
<li class="type" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck."><span class="label">50s Movies</span> | <span class="deselect">X</span></li>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck."><span class="label">Waterfront</span> | <span class="deselect">X</span></li>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck."><span class="label">Streetcar Named Desire</span> | <span class="deselect">X</span></li>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck."><span class="label">Rebel Without a Cause</span> | <span class="deselect">X</span></li>
</ul>
<div id="visual_container">
<div id="entities_container">
<div id="types_container">
<div class="column" id="types">
<!-- Column one start -->
<h3>Types</h3>
<ul>
<li class="type" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Skin Disease</li>
<li class="type selected" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">50s Movie</li>
<li class="type" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Scifi Movie</li>
<li class="type" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Flying Mammal</li>
<li class="type" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Spoken Language</li>
<li class="type" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Scientist</li>
<li class="type" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Physicist</li>
<li class="type" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Recursively Enumerable Grammar</li>
<li class="type" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Political Party</li>
<li class="type" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Nazi Sympathizer</li>
</ul>
<!-- Column one end -->
</div>
<div class="column" id="entities">
<!-- Column two start -->
<h3>Entities</h3>
<ul>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">The Thing from Another World</li>
<li class="entity selected" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Rebel Without a Cause</li>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">The Day the Earth Stood Still</li>
<li class="entity selected" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Streetcar Named Desire</li>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Invasion of the Body Snatchers</li>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">The Bridge on the River Kwai</li>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Ben-Hur</li>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Vertigo</li>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Rear Window</li>
<li class="entity" data-uri="http://example.org/entity_uri" data-comment="This is a string of comment text. Lorem ipsum something word word duck.">Dial M for Murder</li>
</ul>
<!-- Column two end -->
</div>
<div class="column" id="visual">
<!-- Column three start -->
<h3 id="visual_mode">Predicate View</h3>
<!-- Column three end -->
</div>
</div>
</div>
</div>
</div>
<script src="./bower_components/jquery/dist/jquery.js"></script>
<script src="./bower_components/handlebars/handlebars.js"></script>
<script src="./bower_components/ember/ember.js"></script>
<script src="./app.js"></script>
</body>
</html>