|
|
|
|
|
| Source of: index.php | 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027
|
<? /* Sine 2.0 stable version by Carlo Feller && FAiN182 http://www.sinecms.net released under GNU/GPL Licence */
// partenza cronometro list($usec, $sec) = explode(" ", microtime()); $time_start = (float)$usec + (float)$sec ;
include ("theme.php");
// cerca la home e la themizza if ($sine['config']['index_main'] != "" AND file_exists("mods/".$sine['config']['index_main']."/index.php") AND $sine['mods'][$sine['config']['index_main']]['active'] == 1){ include_once ("mods/".$sine['config']['index_main']."/index.php"); themizza($sine, "index", $main, $title, $sine['config']['index_main']); } // ferma cronometro list($fusec, $fsec) = explode(" ", microtime()); $time_end = (float)$fusec + (float)$fsec ; $time = round($time_end - $time_start, 4); include("mods/Integrated/foot.php"); foot ($sine, $time);
?>
|
|