]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/smoothly/theme.php
modified: view/theme/smoothly/css/typography.css
[friendica.git] / view / theme / smoothly / theme.php
index ca721ac218d6d1041295991720d4a42045e9250e..16a33d678ca955baa1bdf0c9ee9595e81c5d9eba 100644 (file)
@@ -2,16 +2,20 @@
 
 /*
  * Name: Smoothly
- * Description: Like coffee with milk. Theme works fine with iPad[2].
- * Version: 0.8.2
+ * Description: Like coffee with milk. Theme optimized for iPad[2].
+ * Version: Version 0.132
  * Author: Alex <https://friendica.pixelbits.de/profile/alex>
  * Maintainer: Alex <https://friendica.pixelbits.de/profile/alex>
  * Screenshot: <a href="screenshot.png">Screenshot</a>
  */
 
-$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
 
 <script>
@@ -95,10 +99,10 @@ $('.savedsearchterm').hover(
 </script>
 EOT;
 
-    // custom css
-    if (!is_null($cssFile)) {
+       /** custom css **/
+       if (!is_null($cssFile)) {
         $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
-    }
+       }
 
 _js_in_foot();
 
@@ -109,9 +113,10 @@ if(! function_exists('_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 = file_get_contents(dirname(__file__) . '/bottom.tpl');
+               $tpl = get_markup_template('bottom.tpl');
 
                return $a->page['bottom'] = replace_macros($tpl, $bottom);
        }