-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (76 loc) · 2.63 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>Anchorbase | Find news better</title>
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="container">
<h3 id="anchorbase-logo" class="text-center">Anchorbase</h3>
<div class = "row">
<div class="col-md-8 col-md-offset-2">
<form id="search-bar" class="span4" role="form">
<input id="user-search" class="form-control span3" placeholder="Search news better" autocomplete="off">
</form>
</div>
</div>
<div class="row" id="sortable">
<div class="row-sort">
<div class="col-md-4 text-center" id="NYT">
<table id="NYT-results-table-header results-table-header" class="NYT-results-table-header table table-bordered">
<tr class="NYT-results-header">
<th class="text-center" >New York Times</th>
</tr>
</table>
<div id="NYT-results-table-scrolable-container" class="results-table-scrolable-container" >
<table id="NYT-results-table" class="NYT-results-table table">
<tr id='NYT-last-row'>
<td></td>
</tr>
</table>
</div>
</div>
<div class="col-md-4 text-center" id="Guardian">
<table id="G-results-table" class="G-results-table table table table-bordered">
<tr class="guardian-results-header results-table-header">
<th class="text-center" >The Guardian</th>
</tr>
</table>
<div id="guardian-results-table-scrolable-container" class="results-table-scrolable-container" >
<table id="guardian-results-table" class="guardian-results-table table">
<tr id='guardian-last-row'>
<td></td>
</tr>
</table>
</div>
</div>
<div class="col-md-4 text-center" id="Wiki">
<table id="G-results-table" class="G-results-table table table table-bordered">
<tr class="G-results-header results-table-header">
<th class="text-center" >Wikipedia</th>
</tr>
</table>
<div id="wikipedia-results-table-scrolable-container" class="results-table-scrolable-container" >
<table id="wikipeida-results-table" class="wikipeida-results-table table">
<tr id='wikipedia-last-row'>
<td></td>
</tr>
</table>
<div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" ></script>
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<script type='text/javascript' src='js/jquery.js'></script>
<script>
$(document).ready(function() {
$('#sortable > .row-sort').sortable();
});
</script>
</body>
</html>