Starting to play with HTML::Template
[koha.git] / html-template / searchresults.tmpl
1 <html>
2 <head><title>Test Template</title>
3 </head>
4 <body>
5 Testing <TMPL_VAR NAME=NAME>
6 <p>
7 Pet's Name: <TMPL_VAR NAME=PET>
8 <p>
9 <hr>
10 <table border=1>
11 <tr><th>Barcode</th><th>Title</th><th>Author</th><th>Dewey</th></tr>
12 <TMPL_LOOP NAME=SEARCH_RESULTS>
13   <tr>
14   <td> <TMPL_VAR NAME=BARCODE> </td>
15   <td> <TMPL_VAR NAME=TITLE> </td>
16   <td> <TMPL_VAR NAME=AUTHOR> </td>
17   </tr>
18 </TMPL_LOOP>
19 </table>
20 <hr>
21 </body>
22 </html>