Simple PHP template handler
include_once 'Template.php'; $template = new Template("layout/"); echo $template->loadTemplate("index", ["username" => "admin"]);
info at phpclasses dot org