]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Sidebar/templates/body.tmpl
rcs_id no longer makes sense with Subversion global version number
[SourceForge/phpwiki.git] / themes / Sidebar / templates / body.tmpl
1 <?php // -*-php-*-
2 // rcs_id('$Id$');
3 // Set the body attr dynamically. here class="ns-2" for Mozilla
4 ?>
5   <body <?= $WikiTheme->getMoreAttr('body') ?>>
6     <div id="global-wrapper">
7       <div id="column-content">
8         <div id="content">
9           <?= Template('top') ?>
10           <div id="bodyContent">
11             <?= $CONTENT ?>
12
13             <!-- end content -->
14             <div class="visualClear"></div>
15           </div>
16         </div>
17 <?php if (!$WikiTheme->DUMP_MODE) { ?>
18         <?= Template('logo') ?>
19         <div id="footer"><?php // for top & bottom toolbars stylesheet ?>
20           <?= Template('browse-footer') ?>
21         </div>
22         <div id="bottom">
23           <?= Template('bottom') ?>
24         </div>
25       </div>
26       <div id="column-one">
27 <?php if (ALLOW_ANON_USER or $user->isAuthenticated()) { ?>
28         <?= Template('navbar') ?>
29         <?php if (empty($GLOBALS['HIDE_TOOLBARS'])) { ?>
30           <?= Template('actionbar') ?>
31         <?php } ?>
32 <?php } // isAuthenticated ?>
33         <?php if (empty($NOSIGNIN)) { ?>
34           <?= Template('signin', array('NOFORM' => 0)) ?>
35         <?php } ?>
36       </div>
37 <?php } // !DUMP_MODE ?>
38     </div>
39   </body>