]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/dialog.tmpl
Patches to minimize HTML comment verbosity by
[SourceForge/phpwiki.git] / themes / default / templates / dialog.tmpl
1 <?php
2 rcs_id('$Id: dialog.tmpl,v 1.2 2003-03-04 23:34:11 dairiki 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 <!-- $Id: dialog.tmpl,v 1.2 2003-03-04 23:34:11 dairiki Exp $ -->
13 <meta http-equiv="Content-Type" content="text/html; charset=<?=CHARSET?>" />
14 <meta name="robots" content="noindex, nofollow" />
15 <meta name="generator" content="phpWiki" />
16 <meta name="PHPWIKI_VERSION" content="<?=PHPWIKI_VERSION?>" />
17 <base href="<?=BASE_URL?>" />
18 <?= $Theme->getCSS() ?>
19 <title><?=WIKI_NAME . ' - ' . _("Dialog")?></title>
20 </head>
21 <body>
22 <div class="dialog">
23 <h1><?=$HEADER?></h1>
24
25 <div class="message"><?=$CONTENT?></div>
26 <p class="buttons"><?=$BUTTONS?></a></p>
27 </div>
28 </body>
29 <?php
30 if (defined('DEBUG') and DEBUG) {
31     printf("<!-- phpwiki source: \n%s-->\n", $RCS_IDS);
32 }
33 ?>
34 </html>