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
2015-02-21 15:11:02 +01:00

20 lines
436 B
PHP

<?php
/*
* Flashii.net Main Index
*/
// Include components
require_once('/var/www/flashii.net/_sakura/sakura.php');
// Initialise templating engine
$flashii->initTwig();
// Print page contents
print $flashii->twig->render('main/index.tpl',
array(
'sakura_version' => SAKURA_VERSION,
'configuration' => $fiiConf,
'pageTitle' => 'Flashii Even More Nightly :^)'
)
);