X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fsmoothly%2Ftheme.php;h=c88b2782740299c7b69ddeb4b118d116402a6ae6;hb=c35b21eb1885c02ddb0779de54e21edd3a79c7b0;hp=70542a40fc8ee53780aeb9e3e21f43bc958700ee;hpb=984274659d8fc710eaf96c35c1b1dcd05620a138;p=friendica.git diff --git a/view/theme/smoothly/theme.php b/view/theme/smoothly/theme.php index 70542a40fc..c88b278274 100644 --- a/view/theme/smoothly/theme.php +++ b/view/theme/smoothly/theme.php @@ -2,16 +2,20 @@ /* * Name: Smoothly - * Description: Theme optimized for iPad/iPad2 - * Version: 0.5 + * Description: Like coffee with milk. Theme optimized for iPad[2]. + * Version: Version 0.21 * Author: Alex * Maintainer: Alex * Screenshot: Screenshot */ -$a->theme_info = array(); - function smoothly_init(&$a) { + $a->theme_info = array(); + set_template_engine($a, 'smarty3'); + + $cssFile = null; + $ssl_state = null; + $baseurl = $a->get_baseurl($ssl_state); $a->page['htmlhead'] .= <<< EOT EOT; -} \ No newline at end of file + + /** custom css **/ + if (!is_null($cssFile)) { + $a->page['htmlhead'] .= sprintf('', $cssFile); + } + +_js_in_foot(); + +} + +if(! function_exists('_js_in_foot')) { + function _js_in_foot() { + /** @purpose insert stuff in bottom of page + */ + $a = get_app(); + $ssl_state = null; + $baseurl = $a->get_baseurl($ssl_state); + $bottom['$baseurl'] = $baseurl; + $tpl = get_markup_template('bottom.tpl'); + + return $a->page['bottom'] = replace_macros($tpl, $bottom); + } +}