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