I guess I might as well give the various page contents to help solve this problem.
Theme Template:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- TemplateBeginEditable name="doctitle" --><!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" --><!-- TemplateEndEditable -->
</head>
<body>
<!-- TemplateBeginEditable name="contentRegion" --><!-- TemplateEndEditable -->
</body>
</html>
New page created with Theme:
<?php
require_once( "webassist/framework/library.php" );
require_once( "webassist/framework/framework.php" );
?>
<?php
if("" == ""){
$WA_Roster_1285970700029_Content_Empty = "";
$WA_Roster_1285970700029_Content = new WA_Include(__FILE__);
$WA_Roster_1285970700029_Template = new WA_Include("Templates{$WA_Roster_1285970700029_Content_Empty}/Roster.php");
require($WA_Roster_1285970700029_Template->BaseName);
$WA_Roster_1285970700029_Template->Initialize(true);
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/Themes/210TemplateSmall_fw_theme.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<!-- InstanceBeginEditable name="doctitle" -->title of this page<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" --><!-- InstanceEndEditable -->
</head>
<body>
<!-- InstanceBeginEditable name="contentRegion" -->Some Roster Content goes here<!-- InstanceEndEditable -->
</body>
<!-- InstanceEnd --></html>
<?php
if(isset($WA_Roster_1285970700029_Template)){
$WA_Roster_1285970700029_Content->Initialize();
$WA_Roster_1285970700029_Template->ReplaceTemplateRegions($WA_Roster_1285970700029_Content);
print($WA_Roster_1285970700029_Template->Content);
}
?>
and the original DW template:
<?php
require_once( "../webassist/framework/library.php" );
require_once( "../webassist/framework/framework.php" );
?><?php
if("" == ""){
$WA_header_1285963835918 = new WA_Include("../includes/header.php");
require($WA_header_1285963835918->BaseName);
$WA_header_1285963835918->Initialize(true);
}
if("" == ""){
$WA_vertNav_1285963879008 = new WA_Include("../vertNav.php");
require($WA_vertNav_1285963879008->BaseName);
$WA_vertNav_1285963879008->Initialize(true);
}
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document 123</title>
<!-- TemplateEndEditable -->
<link href="../styles/SGD2010.css" rel="stylesheet" type="text/css" />
<?php echo((isset($WA_header_1285963835918))?$WA_header_1285963835918->Head:"") ?><?php echo((isset($WA_vertNav_1285963879008))?$WA_vertNav_1285963879008->Head:"") ?>
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
</head>
<body>
<div id="outerWrapperSmall">
<div id="contentWrapper">
<?php echo((isset($WA_header_1285963835918))?$WA_header_1285963835918->Body:"") ?>
<div id="contentSmall"><!-- TemplateBeginEditable name="contentRegion" -->contentRegion<!-- TemplateEndEditable --> </div>
<div id="vert-panel"><?php echo((isset($WA_vertNav_1285963879008))?$WA_vertNav_1285963879008->Body:"") ?> </div>
</div>
</div>
</body>
</html>
I've not even added any dynamic php values...
Some loop?
Plugin Includes should not have been assigned to the parent template prior to converting to a Theme?