This is a very simple PHP class that you can use to generate clean template files without hassle.
require("core/Template.class.php");
$template = new Template();
$template->file("demo.tpl");
$template->assign("title", "My Page Title");
$template->render();
This is not meant for big projects. You can use for small projects such your own website.