21 lines
472 B
PHP
21 lines
472 B
PHP
<?php
|
|
/*
|
|
* Sakura Info Page Handler
|
|
*/
|
|
|
|
// Declare Namespace
|
|
namespace Sakura;
|
|
|
|
// Include components
|
|
require_once '/var/www/flashii.net/_sakura/sakura.php';
|
|
|
|
// Set default variables
|
|
$renderData['page'] = [
|
|
'title' => 'Info pages',
|
|
'content' => 'Unable to load the requested info page.'
|
|
];
|
|
|
|
$ipData = Main::loadInfoPage(isset($_GET['r']) ? strtolower($_GET['r']) : '');
|
|
|
|
// Print page contents
|
|
print Main::$_TPL->render('main/infopage.tpl', $renderData);
|