Files
newznab-tmux/public/admin/index.php
T
2018-03-26 09:40:29 +02:00

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();