Template “$name” not found.

\n"; } # Build page function _tr($dir, $i) { global $tr_conf, $tr_qs, $tr_parts, $tr_rule; $dir .= "/{$tr_parts[$i]}"; $tmpl = false === $tr_rule || false !== strpos($dir, $tr_rule); if ($tmpl) @include "$dir/head.tr"; if ($i == sizeof($tr_parts) - 1) { if (file_exists("$dir/index.html")) include "$dir/index.html"; else @include "$dir/index.php"; } else _tr($dir, $i + 1); if ($tmpl) @include "$dir/foot.tr"; } _tr($tr_dir, 0); ?>