You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
219 B

<?php
require_once realpath(dirname(__DIR__) . DIRECTORY_SEPARATOR . 'smarty.php');
$page = new AdminPage();
$page->title = "Admin Hangout";
$page->content = $page->smarty->fetch('index.tpl');
$page->render();
?>