This commit is contained in:
sparkyx 2006-12-26 20:27:08 +00:00
parent db3735e736
commit 7af307dbb8

View file

@ -1,15 +0,0 @@
<?php
require('Smarty.class.php');
$smarty = new Smarty();
$smarty->template_dir = '../templates';
$smarty->compile_dir = '../compile';
$smarty->cache_dir = '../cache';
$smarty->config_dir = '../configs';
$smarty->assign('name', 'Stan');
$smarty->display('index.tpl');
?>