]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/dialog.tmpl
Remove $Id$
[SourceForge/phpwiki.git] / themes / default / templates / dialog.tmpl
1 <?php
2 /* 
3  * A "popup" dialog.  (Though it does not pop up yet.)
4  */
5 printf("<?xml version=\"1.0\" encoding=\"%s\"?>\n", CHARSET);
6 ?>
7 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
8   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
9 <html xmlns="http://www.w3.org/1999/xhtml">
10 <head>
11 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET?>" />
12 <meta name="robots" content="noindex, nofollow" />
13 <meta name="generator" content="phpWiki" />
14 <meta name="PHPWIKI_VERSION" content="<?php echo PHPWIKI_VERSION?>" />
15 <base href="<?php echo PHPWIKI_BASE_URL?>" />
16 <?php echo $WikiTheme->getCSS() ?>
17 <title><?php echo WIKI_NAME . ' - ' . _("Dialog")?></title>
18 </head>
19 <body>
20 <div class="dialog">
21 <h1><?php echo $HEADER?></h1>
22
23 <div class="message"><?php echo $CONTENT?></div>
24 <p class="buttons"><?php echo $BUTTONS?></p>
25 </div>
26 <?php if (!$WikiTheme->DUMP_MODE) { ?>
27   <?php echo empty($WARNINGS) ? '' : $WARNINGS ?>
28   <?php echo $GLOBALS['ErrorManager']->getPostponedErrorsAsHTML() ?>
29 <?php } ?>
30 </body>
31 </html>