This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/main/index.php

19 lines
338 B
PHP
Raw Normal View History

<?php
/*
2015-03-29 03:16:42 +00:00
* Sakura Main Index
*/
// Declare Namespace
2015-03-25 09:59:10 +00:00
namespace Sakura;
2015-03-08 08:37:12 +00:00
// Include components
2015-03-29 16:25:18 +00:00
require_once '/var/www/flashii.net/_sakura/sakura.php';
// Add page specific things
$renderData['page'] = [
'title' => 'Flashii Dev'
];
// Print page contents
print Main::$_TPL->render('main/index.tpl', $renderData);