To display a template all it takes is:
$smarty->display('base_layout.tpl');
In my project I will always be using the same template but changing the variables. Is there a config value that I can set up in a config file so that I can just do:
$smarty->display();
and have that always call filename.tpl?
You can overwrite
smarty->display()function to handle its parameters.