Simple temporary file hosting https://u.fuwafuwa.moe
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
18 linhas
389 B
18 linhas
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"); |
|
?>
|
|
|