Koha/koha-tmpl/opac-tmpl/prog/en/opac-main.tmpl
tipaul 5ff7fcffa4 Bugfixes & improvements (various and minor) :
- updating templates to have tmpl_process3.pl running without any errors
- adding a drupal-like css for prog templates (with 3 small images)
- fixing some bugs in circulation & other scripts
- updating french translation
- fixing some typos in templates
2007-05-22 09:13:54 +00:00

147 lines
5.2 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<!-- TMPL_VAR NAME="LibraryNameTitle" --> -- Library Catalog
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!--TMPL_INCLUDE NAME="masthead.inc" -->
<!--TMPL_INCLUDE NAME="navigation.inc" -->
<!-- TMPL_IF name="koha_news_count" -->
<div id="news">
<table>
<!-- TMPL_LOOP name="koha_news" -->
<tr>
<th>
<!-- TMPL_VAR name="title" -->
</th>
<tr><td>
<p><!-- TMPL_VAR name="new" --></p>
<p><i>(published on <!-- TMPL_VAR name="newdate" -->)</i></p>
</td></tr>
<!-- /TMPL_LOOP -->
</table>
</div>
<!-- /TMPL_IF -->
<div id="opac-main-search">
<h1>Search our catalogue</h1>
<ul><li>
<label for="masthead_search">Query the catalogue</label>
<form name="searchform" method="POST" action="/cgi-bin/koha/opac-search.pl" id="searchform">
<input type="text" name="q" style="width: 30%;"/>
<input type="submit" value="Search" class="submit" />
</form>
<i>(<a href="/cgi-bin/koha/opac-search.pl">more search options</a>)</i>
</li>
<!-- TMPL_IF name="OpacBrowser" -->
<li><a href="/cgi-bin/koha/opac-browser.pl">Browse the Catalogue</a>, through a hierarchy of subjects</li>
<!-- /TMPL_IF -->
<!-- TMPL_IF name="OpacAuthorities" -->
<li>Query the <a href="/cgi-bin/koha/opac-authorities-home.pl">authorities</a></li>
<!-- /TMPL_IF -->
<!-- TMPL_IF name="OpacCloud" -->
<li>Dig into <a href="/cgi-bin/koha/opac-tags_subject.pl">tag cloud</a></li>
<!-- /TMPL_IF -->
<li>
<form name="recent-acqui" action="/cgi-bin/koha/opac-main.pl" method="POST">
<label for="recentacqui">Get the last</label>
<input id="recentacqui" type="text" name="recentacqui" value="30" size="3"/>
acquisitions
<input type="submit" value=" OK " />
</form>
</li>
</ul>
</div>
<!-- TMPL_IF NAME="languages" -->
<div id="opac-main-changelanguage">
<h1>Change language</h1>
<ul>
<form action="/cgi-bin/koha/changelanguage.pl" method="POST">
<label for="selectlang">Set language to</label>
<select id="selectlang" name="language" onchange="javascript:submit();">
<!-- TMPL_LOOP NAME="languages" -->
<option value="<TMPL_VAR NAME="language">">
<!-- TMPL_VAR NAME="language" -->
</option>
<!-- /TMPL_LOOP -->
</select>
<input type="submit" value="Change" />
</form>
</ul>
</div>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="recentacquiloop"-->
<div class="searchresults">
<table>
<tr>
<th>
Title
</th>
<th>
Author
</th>
<th>
copyright
</th>
<th>
publication year
</th>
<th>
Date
</th>
</tr>
<!-- TMPL_LOOP NAME="recentacquiloop" -->
<tr>
<td>
<p>
<!-- TMPL_IF name="BiblioDefaultViewmarc" -->
<a class="title" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
<!-- TMPL_IF NAME="title"-->
<!-- TMPL_VAR NAME="title" -->
<!-- TMPL_ELSE -->
<span class="problem">(no title)</span>
<!-- /TMPL_IF -->
</a>
<!-- TMPL_ELSE -->
<!-- TMPL_IF name="BiblioDefaultViewisbd" -->
<a class="title" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
<!-- TMPL_IF NAME="title"-->
<!-- TMPL_VAR NAME="title" -->
<!-- TMPL_ELSE -->
<span class="problem">(no title)</span>
<!-- /TMPL_IF -->
</a>
<!-- TMPL_ELSE -->
<a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
<!-- TMPL_IF NAME="title"-->
<!-- TMPL_VAR NAME="title" -->
<!-- TMPL_ELSE -->
<span class="problem">(no title)</span>
<!-- /TMPL_IF -->
</a>
<!-- /TMPL_IF -->
<!-- /TMPL_IF -->
</p>
</td>
<td>
<a href="/cgi-bin/koha/opac-search.pl?q=au:<!-- TMPL_VAR NAME="author" -->">
<!-- TMPL_VAR NAME="author" -->
</a>
</td>
<td>
<!-- TMPL_VAR NAME="copyrightdate" -->
</td>
<td>
<!-- TMPL_VAR NAME="publicationyear" -->
</td>
<td>
<!-- TMPL_VAR NAME="timestamp" -->
</td>
</tr>
<!-- /TMPL_LOOP -->
</table>
</div>
<!-- /TMPL_IF -->
<!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->