Я действительно искал, но ничего не нашел.
Я новичок в шаблоне lite. Я добавляю свой проект template_lite и у меня есть два файла.
test.php - это:
require("../src/class.template.php");
$tpl = new Template_Lite;
$tpl->compile_dir = "compiled/";
$tpl->compile_dir = "templates/";
$tpl->assign("foo","bar");
и у меня есть простой HTML, чтобы увидеть мой код
<html>
<head>
<title>Document Title</title>
</head>
<body>
{$foo}
</body>
</html>
выводит "{$ foo}", а не bar почему: S