Merge pull request #3333 from Rudloff/feature/theme-color
theme-color meta
This commit is contained in:
commit
6a7a4591d3
|
@ -28,6 +28,28 @@
|
||||||
if(x($page,'htmlhead')) echo $page['htmlhead'];
|
if(x($page,'htmlhead')) echo $page['htmlhead'];
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
<?php
|
||||||
|
// Add the theme color meta
|
||||||
|
// It makes mobile Chrome UI match Frio's top bar color.
|
||||||
|
$uid = $a->profile_uid;
|
||||||
|
if (is_null($uid)) {
|
||||||
|
$uid = get_theme_uid();
|
||||||
|
}
|
||||||
|
$schema = get_pconfig($uid, 'frio', 'schema');
|
||||||
|
if (($schema) && ($schema != '---')) {
|
||||||
|
if (file_exists('view/theme/frio/schema/'.$schema.'.php')) {
|
||||||
|
$schemefile = 'view/theme/frio/schema/'.$schema.'.php';
|
||||||
|
require_once($schemefile);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$nav_bg = get_pconfig($uid, 'frio', 'nav_bg');
|
||||||
|
}
|
||||||
|
if (!$nav_bg) {
|
||||||
|
$nav_bg = "#708fa0";
|
||||||
|
}
|
||||||
|
echo '<meta name="theme-color" content="'.$nav_bg.'" />';
|
||||||
|
?>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<?php
|
<?php
|
||||||
if(($_SERVER['REQUEST_URI'] != "/register") && ($_SERVER['REQUEST_URI'] != "/lostpass") && ($_SERVER['REQUEST_URI'] != "/login"))
|
if(($_SERVER['REQUEST_URI'] != "/register") && ($_SERVER['REQUEST_URI'] != "/lostpass") && ($_SERVER['REQUEST_URI'] != "/login"))
|
||||||
|
|
Loading…
Reference in a new issue