]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/body.tmpl
Round off debug time to 3 digits.
[SourceForge/phpwiki.git] / themes / default / templates / body.tmpl
1 <?php // -*-html-*- ?>
2 <!-- $Id: body.tmpl,v 1.17 2002-02-07 03:48:19 carstenklapp Exp $ -->
3 <body>
4
5 <!-- The logo -->
6 <div id="logo"><a class="wikilink" 
7                   href="<?=WikiURL(HomePage)?>"
8                   ><img src="<?=$Theme->getImageURL('logo')?>"
9                         border="0" alt="<?=WIKI_NAME?>: <?=HomePage?>" 
10                         align="right" /></a></div>
11
12 <!-- The top navigation/search bar -->
13 <?= Template('navbar') ?>
14
15 <!-- Page title -->
16 <h1><?=$HEADER?></h1>
17
18 <?= $CONTENT ?>
19
20 <?= $GLOBALS['ErrorManager']->getPostponedErrorsAsHTML() ?>
21 <div id="xhtml-validator"><a href="http://validator.w3.org/check/referer"><img
22         border="0"
23         src="http://www.w3.org/Icons/valid-xhtml10"
24         alt="Valid XHTML 1.0!" height="31" width="88" />
25 </a></div>
26 <?php
27 if (defined('DEBUG')){
28 $t = round(getmicrotime()-$GLOBALS['debugclock'], 3); 
29 echo "<p>Page Execution took $t seconds</p>";} ?>
30 </body>