uguu/error_meow.php

14 lines
389 B
PHP
Raw Permalink Normal View History

2015-10-06 01:05:00 +02:00
<?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);
2017-02-16 15:17:52 +01:00
$tpl->assign("site_name", CONFIG_SITE_NAME);
2015-10-06 01:05:00 +02:00
$tpl->draw("header");
$tpl->draw("error_meow");
$tpl->draw("footer");
?>