* Maintainer: Zach P */ $a->theme_info = array(); function frost_mobile_init(&$a) { // I could do this in style.php, but by having the CSS in a file the browser will cache it, // making pages load faster if( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) { $a->page['htmlhead'] = str_replace('$stylesheet', $a->get_baseurl() . '/view/theme/frost-mobile/login-style.css', $a->page['htmlhead']); } if( $a->module === 'login' ) $a->page['end'] .= ''; $a->sourcename = 'Friendica mobile web'; $a->videowidth = 250; $a->videoheight = 200; }