Bug 27742: Page titles have unique info first
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / opac-authorities-home.tt
1 [% USE Koha %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Authority search &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 [% BLOCK cssinclude %][% END %]
6 </head>
7 [% INCLUDE 'bodytag.inc' bodyid='opac-authorities' bodyclass='scrollto' %]
8 [% INCLUDE 'masthead.inc' %]
9
10     <div class="main">
11         <nav aria-label="breadcrumb">
12             <ul class="breadcrumb">
13                 <li class="breadcrumb-item">
14                     <a href="/cgi-bin/koha/opac-main.pl">Home</a>
15                 </li>
16                 <li class="breadcrumb-item" aria-current="page">
17                     <a href="#">Authority search</a>
18                 </li>
19             </ul>
20         </nav>
21
22         <div class="container-fluid">
23             <div class="row">
24                 [% IF ( OpacNav || OpacNavBottom ) %]
25                     <div class="col-lg-2">
26                         <div id="navigation">
27                             [% INCLUDE 'navigation.inc' %]
28                         </div>
29                     </div>
30                     <div class="col-10 order-first order-md-first order-lg-2">
31                 [% ELSE %]
32                     <div class="col order-first order-md-first order-lg-2">
33                 [% END %]
34                     <div id="userauthhome" class="maincontent">
35                         <form name="f" action="/cgi-bin/koha/opac-authorities-home.pl" method="get">
36                             <input type="hidden" name="op" value="do_search" />
37                             <input type="hidden" name="type" value="opac" />
38                             <fieldset class="rows">
39                                 <legend>Authority search</legend>
40                                 <ol>
41                                     <li>
42                                         <label for="authtypecode">Authority type: </label>
43                                         <select name="authtypecode" id="authtypecode">
44                                             [% FOREACH authority_type IN authority_types %]
45                                                 [% IF authority_type.authtypecode == authtypecode %]
46                                                     <option value="[% authority_type.authtypecode | html %]" selected="selected">[% authority_type.authtypetext | html %]</option>
47                                                 [% ELSE %]
48                                                     <option value="[% authority_type.authtypecode | html %]">[% authority_type.authtypetext | html %]</option>
49                                                 [% END %]
50                                             [% END %]
51                                         </select>
52                                     </li>
53                                     <li>
54                                         <label for="anywhere">Search options:</label>
55                                         <select name="operator" id="anywhere">
56                                             <option value="contains">contains</option>
57                                             <option value="start">starts with</option>
58                                             <option value="is">is exactly</option>
59                                         </select>
60                                     </li>
61                                     <li>
62                                         <label for="value">Term(s):</label>
63                                         <input type="text" name="value" id="value" value="[% value | html %]" />
64                                     </li>
65                                     <li>
66                                         <label for="marclist">Where:</label>
67                                         <select name="marclist" id="marclist">
68                                             <option value="all" selected="selected">in the complete record</option>
69                                             <option value="match">in any heading</option>
70                                             <option value="mainentry">in main entry</option>
71                                         </select>
72                                     </li>
73                                     <li>
74                                         <input type="hidden" name="and_or" value="and" />
75                                         <input type="hidden" name="excluding" value="" />
76                                         <label for="orderby">Order by: </label>
77                                         <select name="orderby" id="orderby">
78                                             <option value="">None</option>
79                                             <option value="HeadingAsc" selected="selected">Heading ascendant</option>
80                                             <option value="HeadingDsc">Heading descendant</option>
81                                         </select>
82                                     </li>
83                                 </ol>
84                             </fieldset>
85                             <fieldset class="action">
86                                 <input type="submit" value="Submit" class="btn btn-primary" />
87                             </fieldset>
88                         </form>
89                     </div> <!-- / #userauthhome -->
90                 </div> <!-- / .col-lg-10/12 -->
91             </div> <!-- / .row -->
92         </div> <!-- / .container-fluid -->
93     </div> <!-- / .main -->
94
95 [% INCLUDE 'opac-bottom.inc' %]
96 [% BLOCK jsinclude %][% END %]