mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
10 lines
199 B
PHP
10 lines
199 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
|
|
|
|
$page = new AdminPage();
|
|
|
|
$page->title = 'Admin Hangout';
|
|
$page->content = $page->smarty->fetch('index.tpl');
|
|
$page->render();
|