]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/frameset.tmpl
rcs_id no longer makes sense with Subversion global version number
[SourceForge/phpwiki.git] / themes / default / templates / frameset.tmpl
1 <?php // -*-php-*-
2 // rcs_id('$Id$');
3 // This template is used for the FrameInclude plugin.
4
5 $topurl = $request->getURLtoSelf(array('frame' => 'header'));
6 $boturl = $request->getURLtoSelf(array('frame' => 'footer'));
7
8 printf("<?xml version=\"1.0\" encoding=\"%s\"?>\n", CHARSET);
9 ?>
10 <!DOCTYPE html   PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
11   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
12 <html xmlns="http://www.w3.org/1999/xhtml">
13 <?= Template('head') ?>
14
15 <frameset rows="<?=$ROWS?>">
16   <frame name="header" src="<?=$topurl?>" <?= $FRAMEARGS ?>/>
17   <?= $CONTENT_FRAME ?>
18   <frame name="footer" src="<?=$boturl?>" <?= $FRAMEARGS ?>/>
19   <noframes><?= Template('body') ?></noframes>
20 </frameset>
21 </html>