Simple PHP-based template engine. Example usage:
<?php $template = new Template($filePath); $template->someValue = 'value'; Template::headJs('path'); $template->render(); ?>
$head :
$_templateFile :
$_vars :
headJs(string $path)
Add a script to be loaded in <head>
headCss(string $path)
Add a css file to be loaded in <head>
__construct(string $templateFile)
__set( $name, $value)
__get( $name)
__isset( $name)
render()
Render the template