]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/navbar.tmpl
Added an extra div level to the toolbar for greater positioning control via css.
[SourceForge/phpwiki.git] / themes / default / templates / navbar.tmpl
1 <?php // -*-html-*- ?>
2 <!-- $Id: navbar.tmpl,v 1.8 2002-02-11 21:15:08 carstenklapp Exp $ -->
3 <?php
4
5 $s = $Theme->getButtonSeparator();
6
7 ?>
8 <!-- The top navigation/search bar -->
9 <form action="<?= WikiURL(_("TitleSearch"))?>"
10       method="get" accept-charset="<?=CHARSET?>">
11   <div class="toolbar" id="navbar">
12   <div id="navbuttons">
13    <?= WikiLink(_("RecentChanges"), "button") ?>
14    <?=$s?><?= WikiLink(_("FindPage"), "button") ?>
15    <?=$s?><input type="hidden" name="auto_redirect" value="1" />
16       <input type="text"  name="s" size="12" maxlength="256"
17              title='<?=_("Quick Search")?>'
18              onmouseover="window.status='<?=_("Quick Search")?>'; return true;"
19              onmouseout="window.status=''; return true;" />
20     <?php if (!empty($revision)) { ?>
21      <?=$s?><?= Button(_("LikePages")) ?>
22      <?=$s?><?= Button(_("BackLinks")) ?>
23     <?php } ?>
24     <?php if (!empty($user) && $user->isAdmin()) { ?>
25      <?=$s?><?= WikiLink(_("PhpWikiAdministration"), "button") ?>
26     <?php } ?>
27   </div>
28   </div>
29 </form>