]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/MonoBook/templates/body.tmpl
MonoBook improvements: fix action button bar for MSIE
[SourceForge/phpwiki.git] / themes / MonoBook / templates / body.tmpl
1 <?php // -*-html-*-
2 rcs_id('$Id: body.tmpl,v 1.3 2006-12-02 13:35:04 rurban Exp $');
3 // Todo: 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             <!-- end content -->
13             <div class="visualClear"></div>
14           </div>
15         </div>
16       </div>
17       <div id="column-one">
18         <?= Template('logo') ?>
19         <?php if (empty($NOSIGNIN)) { ?>
20         <div class="portlet" id="p-personal" align="right">
21           <?= Template('signin') ?>
22         </div>
23         <?php } ?>
24         <?= Template('navbar') ?>
25         <?php if (empty($GLOBALS['HIDE_TOOLBARS'])) { ?>
26           <?= Template('actionbar') ?>
27         <?php } ?>
28         <div>
29           <?= Template('bottom') ?>
30         </div>
31       </div>
32       <div id="footer"><?php // for top & bottom toolbars stylesheet ?>
33         <?= Template('browse-footer') ?>
34       </div>
35     </div>
36 </body>