]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/top-htmldump.tmpl
Added link rel="index" pointing to AllPages for XHTML dumps; for use with Mozilla...
[SourceForge/phpwiki.git] / themes / default / templates / top-htmldump.tmpl
1 <?php  // -*-html-*-
2 /* $Id: top-htmldump.tmpl,v 1.2 2002-03-25 15:07:58 carstenklapp Exp $
3  *
4  * This template is used only for html file dumps, and is responsible mainly for the outer level <html> stuff and the and <head>.
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: top-htmldump.tmpl,v 1.2 2002-03-25 15:07:58 carstenklapp Exp $ -->
13 <meta http-equiv="Content-Type" content="text/html; charset=<?=CHARSET?>" />
14 <?php /**
15        * Additional navigation links are provided here in the html header for browsers
16        * which support them: Mozilla, iCab, Amaya (and certain versions of Opera??).
17        *
18        * See http://www.w3.org/TR/html401/struct/links.html#edef-LINK
19        *     http://www.euronet.nl/~tekelenb/WWW/LINK/index.html
20        */ ?>
21 <link rel="home" title="<?=HomePage?>" href="<?=WikiURL(HomePage)?>" />
22 <link rel="help" title="<?=_("HowToUseWiki")?>" href="<?=WikiURL(_("HowToUseWiki"))?>" />
23 <link rel="copyright" title="GNU General Public License" href="http://www.gnu.org/copyleft/gpl.html#SEC1" />
24 <?php
25       $wikiadminName = _("The PhpWiki Programming Team");
26       $wikiadminUrl = "http://phpwiki.sourceforge.net/phpwiki/ThePhpWikiProgrammingTeam";
27       ?>
28 <link rel="author" title="<?= $wikiadminName ?>" href="<?= $wikiadminUrl ?>" />
29 <link rel="index" title="<?=_("AllPages")?>" href="<?=WikiURL(_("AllPages"))?>" />
30
31 <?= $Theme->getCSS() ?>
32 <title><?=WIKI_NAME?> - <?=AsString($TITLE)?></title>
33 </head>
34 <?= Template('body') ?>
35 <!-- phpwiki source:
36 <?=$RCS_IDS?>
37 -->
38 </html>