]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/html.tmpl
Added PhpWiki RssFeed to Sidebar
[SourceForge/phpwiki.git] / themes / default / templates / html.tmpl
1 <?php  // -*-html-*-
2 rcs_id('$Id: html.tmpl,v 1.4 2004-04-09 17:49:12 rurban Exp $');
3 /*
4  * This template is responsible mainly for the outer level <html> stuff.
5  *
6  * NS/MO/IE/Op Browsers before 4.0 don't like that.
7  */
8 if (browserVersion() >= 4.0)
9   printf("<?xml version=\"1.0\" encoding=\"%s\"?>\n", CHARSET);
10 ?>
11 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
12   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
13 <html xmlns="http://www.w3.org/1999/xhtml">
14 <?= Template('head') ?>
15 <?= Template('body') ?>
16 <?php
17 if (defined('DEBUG') and DEBUG) {
18     printf("<!-- phpwiki source: \n%s-->\n", $RCS_IDS);
19 }
20 ?>
21 </html>