If we find a home.html, also look for a home.css

This commit is contained in:
Thomas Willingham 2013-01-05 14:31:10 +00:00
parent e09c31b627
commit 0cf3d70875
1 changed files with 6 additions and 2 deletions

View File

@ -25,8 +25,12 @@ function home_content(&$a) {
if(x($_SESSION,'mobile-theme')) if(x($_SESSION,'mobile-theme'))
unset($_SESSION['mobile-theme']); unset($_SESSION['mobile-theme']);
if(file_exists('home.html')) if(file_exists('home.html')){
$o .= file_get_contents('home.html'); if(file_exists('home.css')){
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/home.css' . '" media="all" />';}
$o .= file_get_contents('home.html');}
else $o .= '<h1>' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '</h1>'; else $o .= '<h1>' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '</h1>';