Simple temporary file hosting https://u.fuwafuwa.moe
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
389 B
18 lines
389 B
<?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->assign("site_name", CONFIG_SITE_NAME); |
|
$tpl->draw("header"); |
|
$tpl->draw("error"); |
|
|
|
$tpl->draw("footer"); |
|
?>
|
|
|