35 lines
765 B
Cheetah
35 lines
765 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>
|
|
<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>
|
|
</table>
|
|
<TMPL_IF NAME="opac">
|
|
<TMPL_INCLUDE NAME="opac-bottom.inc">
|
|
<TMPL_ELSE>
|
|
<TMPL_INCLUDE NAME="cat-bottom.inc">
|
|
</TMPL_IF>
|