]> jfr.im git - uguu.git/blob - error_meow.php
Update README.md
[uguu.git] / error_meow.php
1 <?php
2 require_once "rain/rain.tpl.class.php";
3 raintpl::configure( 'path_replace', false);
4 raintpl::configure( 'tpl_dir', 'rain/template/');
5 raintpl::configure( 'cache_dir', 'rain/cache/' );
6 $tpl = new RainTPL;
7 $title = "Temp File Hosting";
8 $tpl->assign("title", $title);
9 $tpl->draw("header");
10 $tpl->draw("error_meow");
11 $tpl->draw("footer");
12 ?>