]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Portland/templates/navbar.tmpl
Use CSS
[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 class="toolbar fullwidth" id="actionbar">
18 <tr class="baseline">
19   <td>
20    <?php echo WikiLink(_("RecentChanges"), "button") ?>
21     <?php if ($user->isAdmin()) { ?>
22      <?php echo $SEP?><?php echo WikiLink(_("PhpWikiAdministration"), "button") ?>
23     <?php } ?>
24   </td>
25   <td align="right">
26     <?php echo Template('signin') ?>
27   </td>
28 </tr></table>