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

16 lines
304 B
PHP
Raw Normal View History

<?php
/*
* Flashii.net Main Index
*/
2015-03-08 08:37:12 +00:00
// Include components
require_once('/var/www/flashii.net/_sakura/sakura.php');
// Add page specific things
$renderData['page'] = [
'title' => 'Flashii Dev'
];
// Print page contents
2015-03-08 05:48:27 +00:00
print $flashii->_TPL->render('main/index.tpl', $renderData);