]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/dialog.tmpl
new DEBUG flag: _DEBUG_LOGIN (64)
[SourceForge/phpwiki.git] / themes / default / templates / dialog.tmpl
1 <?php
2 rcs_id('$Id: dialog.tmpl,v 1.5 2004-06-14 11:26:52 rurban Exp $');
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?></a></p>
26 </div>
27 </body>
28 <?php
29 if (defined('DEBUG') and DEBUG) {
30     printf("<!-- phpwiki source: \n%s-->\n", $RCS_IDS);
31 }
32 ?>
33 </html>