Now using real data. Returns first 20 records where author starts with 's'
[koha.git] / html-template / searchresults.tmpl
1 <html>
2 <head><title>Test Template</title>
3 </head>
4 <body>
5 <table border=1>
6 <tr><th>Title</th><th>Author</th><th>Biblionumber</th></tr>
7 <TMPL_LOOP NAME=SEARCH_RESULTS>
8   <tr>
9   <td> <TMPL_VAR NAME=title> </td>
10   <td> <TMPL_VAR NAME=author> </td>
11   <td> <TMPL_VAR NAME=biblionumber> </td>
12   </tr>
13 </TMPL_LOOP>
14 </table>
15 <hr>
16 </body>
17 </html>