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
flashwave 51c9b77fb0 Display version of _Sakura build in the footer.
Signed-off-by: Flashwave <me@flash.moe>
2015-02-21 14:23:40 +01:00

20 lines
421 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_Sakura'
)
);