mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-24 13:11:46 +00:00
15 lines
427 B
PHP
15 lines
427 B
PHP
<?php
|
|
// helpful constants
|
|
define('tableHeadColor', '#737b9c');
|
|
define('menuHeadColor', '#737b9c');
|
|
define('menuBgColor', '#4b4f66');
|
|
define('featureBgColor', '#252733');
|
|
|
|
if ( !$newstyle ) {
|
|
require( siteHome . "/lib/table.php" );
|
|
require( siteHome . "/lib/array.php" );
|
|
require( siteHome . "/lib/graph.php" );
|
|
require( siteHome . "/lib/network.php" );
|
|
require( siteHome . "/lib/date.php" );
|
|
}
|
|
?>
|