]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/dialog.tmpl
Use HTML 5 DOCTYPE; force CHARSET=utf-8
[SourceForge/phpwiki.git] / themes / default / templates / dialog.tmpl
1 <?php
2 /* 
3  * A "popup" dialog.  (Though it does not pop up yet.)
4  */
5 ?>
6 <!DOCTYPE html>
7 <head>
8 <meta charset="UTF-8" />
9 <meta name="robots" content="noindex, nofollow" />
10 <meta name="generator" content="phpWiki" />
11 <meta name="PHPWIKI_VERSION" content="<?php echo PHPWIKI_VERSION?>" />
12 <base href="<?php echo PHPWIKI_BASE_URL?>" />
13 <?php echo $WikiTheme->getCSS() ?>
14 <title><?php echo WIKI_NAME . ' - ' . _("Dialog")?></title>
15 </head>
16 <body>
17 <div class="dialog">
18 <h1><?php echo $HEADER?></h1>
19
20 <div class="message"><?php echo $CONTENT?></div>
21 <p class="buttons"><?php echo $BUTTONS?></p>
22 </div>
23 <?php if (!$WikiTheme->DUMP_MODE) { ?>
24   <?php echo empty($WARNINGS) ? '' : $WARNINGS ?>
25   <?php echo $GLOBALS['ErrorManager']->getPostponedErrorsAsHTML() ?>
26 <?php } ?>
27 </body>
28 </html>