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