-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmainmenu.html
75 lines (61 loc) · 2.33 KB
/
mainmenu.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
<!DOCTYPE html>
<html lang="en">
<!-- Sierra Webpac Bootstrap Skin -->
<!-- http://github.com/boycetrus/sierra-webpac-bootstrap-skin -->
<head>
<title>[Insert Library Name] Web Catalog</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/screens/print.css" rel="stylesheet" media="print">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,700italic,600,600italic' rel='stylesheet' type='text/css'>
<!--[if lt IE 9]>
<link href="/screens/ie.css" media="screen, projection" rel="stylesheet" type="text/css" /><script src="js/html5shiv-printshiv.js"></script>
<![endif]-->
</head>
<body>
<!--{toplogo}-->
<h1 class="sr-only">Search</h1>
<div id="searchForm" class="webpac-form-container well well-lg">
<form action="/search/" method="get" name="search" id="search" class="webpac-form search form-inline">
<p class="lead">Find books, movies<span class="hidden-xs">, music</span> & more</p>
<!--{nosort}-->
<!-- Optional legend:
<fieldset>
<legend>Type the search term you want to find.</legend>-->
<div class="form-group">
<label for="searchtype" class="sr-only">Search type</label>
<select name="searchtype" id="searchtype" class="form-control">
<!--
Add options for each index field code you want to offer
for searching. check the list of field codes in Sierra under:
Admin > Parameters > General > Index Labels
-->
<option value="X" selected="selected">Keyword</option>
<option value="t">Title</option>
<option value="a">Author</option>
<option value="d">Subject</option>
<option value="h">Journal Title</option>
<option value="s">Series Title</option>
<option value="i">ISBN / ISSN</option>
<option value="c">Call No.</option>
</select>
</div>
<div class="form-group">
<label for="searcharg" class="sr-only">Search term</label>
<input class="form-control" name="searcharg" id="searcharg" type="text" placeholder="type your search words">
</div>
<span class="hidden-xs">in</span>
<div class="form-group">
<!--{scope}-->
</div>
<input type="hidden" name="SORT" value="DZ">
<input type="hidden" name="extended" value="0">
<button type="submit" class="btn btn-primary" id="icon_Submit">Search</button>
<!--</fieldset> optional-->
<p><a href="search/X">Advanced Search</a></p>
</form>
<!-- /search -->
</div>
<!-- /searchForm -->
<!--{botlogo}-->
</body>
</html>