Create error_meow.php

This commit is contained in:
Eric Johansson (neku) 2015-10-06 01:05:00 +02:00
parent af51aa0630
commit c67054219e
1 changed files with 12 additions and 0 deletions

12
error_meow.php Normal file
View File

@ -0,0 +1,12 @@
<?php
require_once "rain/rain.tpl.class.php";
raintpl::configure( 'path_replace', false);
raintpl::configure( 'tpl_dir', 'rain/template/');
raintpl::configure( 'cache_dir', 'rain/cache/' );
$tpl = new RainTPL;
$title = "Temp File Hosting";
$tpl->assign("title", $title);
$tpl->draw("header");
$tpl->draw("error_meow");
$tpl->draw("footer");
?>