mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
12 lines
257 B
PHP
12 lines
257 B
PHP
<?php
|
|
|
|
use Blacklight\http\AdminPage;
|
|
|
|
require_once dirname(__DIR__, 2).DIRECTORY_SEPARATOR.'resources/views/themes/smarty.php';
|
|
|
|
$page = new AdminPage();
|
|
|
|
$page->title = 'Admin Hangout';
|
|
$page->content = $page->smarty->fetch('index.tpl');
|
|
$page->render();
|