<?php require("../lib/main.php");
// Control the output
$vars = array(
"title"=>"Token Test",
"content"=>Template_Subsystem::parse_file("html/test/t1", array("test"=>"TEST","foo"=>array("bar"=>"BAR")))
);
echo(Template_Subsystem::parse_file("html/page/article", $vars));
$vars = array(
"title"=>"See Also",
"content"=>Template_Subsystem::parse_file("html/page/extra/projectdetails")
);
echo(Template_Subsystem::parse_file("html/page/extra",$vars));
?>