Small cleanups. We really need to hash out some standard hierarchy for storing
[koha.git] / html-template / searchresults.tmpl
1 <html>
2 <head><title>Search Results</title>
3 </head>
4 <body>
5 <TMPL_INCLUDE NAME="searchheader.tmpl">
6 <table border=0 cellspacing=0 cellpadding=0>
7 <tr bgcolor=#ccccff><th>Title</th><th>Author</th><th>Biblionumber</th></tr>
8 <TMPL_LOOP NAME=SEARCH_RESULTS>
9   <tr>
10   <td> <TMPL_VAR NAME=title> </td>
11   <td> <TMPL_VAR NAME=author> </td>
12   <td> <TMPL_VAR NAME=biblionumber> </td>
13   </tr>
14 </TMPL_LOOP>
15 <tr><td colspan=3 bgcolor=#ccccff><a href=search.pl?template=<TMPL_VAR NAME="template">&startfrom=<TMPL_VAR NAME="nextstartfrom">>Next Records</a></td></tr>
16 </table>
17 <hr>
18 </body>
19 </html>