Koha/koha-tmpl/intranet-tmpl/default/en/search.marc/result.tmpl
2003-04-30 00:20:35 +00:00

38 lines
784 B
Cheetah

<TMPL_IF NAME="opac">
<TMPL_INCLUDE NAME="opac-top.inc">
<TMPL_ELSE>
<TMPL_INCLUDE NAME="cat-top.inc">
</TMPL_IF>
<center>
<table border=0 cellspacing=0 cellpadding=2 width="90%">
<thead>
<tr
<TMPL_IF NAME="opac">
bgcolor=#99cccc background=/images/background-opac.gif
<TMPL_ELSE>
bgcolor="#ad11ad"
</TMPL_IF>
>
<th>Biblio #</th>
<th>Author</th>
<th>Title</th>
</tr>
</thead>
<tbody>
<TMPL_LOOP name="result">
<tr>
<td><a href="../MARCdetail.pl?bibid=<TMPL_VAR name="bibid">"><TMPL_VAR name="bibid"></a></td>
<td><TMPL_VAR name="author"></td>
<td><TMPL_VAR name="title"></td>
</tr>
</TMPL_LOOP>
</tbody>
</table>
<TMPL_IF NAME="opac">
<TMPL_INCLUDE NAME="opac-bottom.inc">
<TMPL_ELSE>
<TMPL_INCLUDE NAME="cat-bottom.inc">
</TMPL_IF>