First page Back Continue Last page Overview Graphics
Smarty Templates Howto - cont
<?php
if (file_exists('/path/to/templates/templateName') {
- $smarty = new Smarty();
- $smarty->template_dir = '/path/to/templates/';
- $smarty->compile_dir = '/cachePath/';
- $smarty->assign('pagename', $pagename);
- $smarty->display('templateName.tpl');
} else {
- usePreviousPageGenerationMethod();
}
?>