]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/fusionforge/templates/browse.tmpl
Remove $Id
[SourceForge/phpwiki.git] / themes / fusionforge / templates / browse.tmpl
1 <?php
2 $curuserprefs = $user->getPreferences();
3 ?>
4
5 <?php if ($page->exists() and $revision and $revision->hasDefaultContents()) { ?>
6   <p class="error"><?php echo _("Error:")?>
7   <?php echo _("This revision of the page does not exist.")?>
8   <?php echo Button('browse', _("View the current version."), $page)?>
9   </p>
10 <?php } else { ?>
11 <?php if ($revision and !$revision->isCurrent()) { ?>
12   <p class="warning_msg"><?php echo _("Note:")?>
13   <?php echo _("You are viewing an old revision of this page.")?>
14   <?php echo Button('browse', _("View the current version."), $page)?>
15   </p>
16 <?php } ?>
17 <?php if (!empty($redirected)) { ?>
18   <p><?php echo $redirected ?></p>
19 <?php } ?>
20
21 <?php if (WIKI_NAME == "help") { ?>
22 <div class="browsebanner">
23 <table>
24 <tr>
25 <td>This Help page is located in the Forge Help wiki. You are not in your project's wiki.</td>
26 </tr>
27 </table>
28 </div>
29 <?php } ?>
30
31 <?php if ($curuserprefs->get('pageTrail')) { ?>
32 <?plugin PageTrail ?>
33 <?php } ?>
34
35 <?php echo $CONTENT?>
36
37 <?php } ?>
38
39 <div id="footer"><?php // for top & bottom toolbars stylesheet ?>
40   <?php echo Template('browse-footer')?>
41 </div>