-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 2.83 KB
/
index.html
File metadata and controls
61 lines (61 loc) · 2.83 KB
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 SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>NEJM Search</title>
<script src="/application/lib/external/jquery-1.7.1.min.js" type="text/javascript"></script>
<link href="http://cdn.kendostatic.com/2014.1.416/styles/kendo.common.min.css"
rel="stylesheet" />
<link href="http://cdn.kendostatic.com/2014.1.416/styles/kendo.default.min.css"
rel="stylesheet" />
<script src="http://cdn.kendostatic.com/2014.1.416/js/kendo.ui.core.min.js" type="text/javascript"></script>
<script src="search.js" type="text/javascript"></script>
<link type="text/css" rel="stylesheet" href="/css/page-layout.css" media="screen, print" />
</head>
<body>
<div id="head">
<img src="images/Marklogic-logo.jpg" alt="" id="logo" />
</div>
<br />
<div id="searchbar">
<input id="sbox" type="text" placeholder="Search" />
<div class="demo-section k-header">
<div id="additionalConstraints"></div>
<select id="constraintOptions">
<!-- try to keep in alphabetic order -->
<option value="fake">Add New Constraint</option>
<option>abstract</option>
<option>aff</option>
<option>audio</option>
<option>authorSurname</option>
<option>category</option>
<option>doi</option>
<option>has_audio</option>
<option>has-cme</option>
<option>has_video</option>
<option>images</option>
<option>manuscriptId</option>
<option>nlm-type</option>
<option>persp-topic-str</option>
<option>pub_day</option>
<option>pub_month</option>
<option>pub_year</option>
<option>publisher-name</option>
<option>specialty</option>
<option>title</option>
<option>topic</option>
<option>video</option>
</select>
<!--<button id="newConstraintBtn">Add New Constraint</button>-->
</div>
<div>
<b>Sorted By: </b>
<input type="radio" name="sort" value="relevance">Relevance</input>
<input type="radio" name="sort" value="pub-date">Pub Date</input>
<input type="radio" name="sort" value="title">Title</input>
</div>
<input id="page_length" type="text" placeholder="Page Length" style="display:none;" />
</div>
<br />
<div id="wo"></div>
</body>
</html>