include ("database.php");
include ("template.php");
$template = new Template($template_path);
// Content
$template->set_filenames(array('header' => 'header.tpl'));
$template->assign_vars(array('H_TITLE' => "Home"));
$template->pparse('header');
?>
Welcome to the CubeOne website
We can provide website design and hosting services to anybody that needs them. From individuals needing a simple homepage, to a small business. For more information on the services that we provide, please review the menu to the left of this page.
$template->set_filenames(array('footer' => 'footer.tpl'));
$template->pparse('footer');
?>