]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Portland/templates/navbar.tmpl
Remove $Id$
[SourceForge/phpwiki.git] / themes / Portland / templates / navbar.tmpl
1 <!-- The bottom navigation/search bar -->
2
3     <?php echo WikiLink(_("FindPage"), "button") ?> by searching
4     <?php if ($revision) { ?>
5       (or browse <?php echo Button(_("LikePages"), _("LikePages")) ?>)
6     <?php } ?>
7     <?php if ($user->isAdmin()) { ?>
8      <?php echo $SEP?><?php echo Button($page->get('locked') ? 'unlock' : 'lock')?>
9      <?php echo $SEP?><?php echo Button('remove') ?>
10     <?php } ?>
11    <hr />
12 <!-- I would like not to have to use these tables, and managed to
13      get this stuff to work more or less correctly using
14      CSSs float:left; and float:right;.  However float:right; seems
15      to cause MSIE4.01/NT to hang.
16      So, we use tables...  -->
17 <table summary="Toolbar 1: Navigation and user login."
18        class="toolbar" width="100%"
19        cellpadding="0" cellspacing="0" border="0"
20        id="actionbar">
21 <tr valign="baseline">
22   <td>
23    <?php echo WikiLink(_("RecentChanges"), "button") ?>
24     <?php if ($user->isAdmin()) { ?>
25      <?php echo $SEP?><?php echo WikiLink(_("PhpWikiAdministration"), "button") ?>
26     <?php } ?>
27   </td>
28   <td align="right">
29     <?php echo Template('signin') ?>
30   </td>
31 </tr></table>