Posts Tagged ‘frame’


theme coding

Friday, April 18th, 2008

<html>
<head>
<title><?php page_content_element(”title”);?>
</title>
<link rel=”stylesheet” type=”text/css” href=”mystyle.css” />

</head>
<body>
<table>
<tr><td></td><td align=”center”><?php
theme_include($frame_inclusion_filedata[top]);
?></td></tr>
<tr><td valign=”top”><?php
theme_include($frame_inclusion_filedata[left]);
theme_boxes(”left”);
?></td><td valign=”top”>
<?php
page_content_element(”heading”);
page_content(”top”);
theme_include($frame_inclusion_filedata[middle]);

page_content(”bottom”);
?>
</td></tr>
<tr><td colspan=”2″ align=”center”><?php
theme_include($frame_inclusion_filedata[bottom]);
?></td></tr>
</table>
</body>
</html>