/**
  * add meta name, content and $MetaTags(true) to default theme
  */
 protected static function addMeta()
 {
     // Todo: compan_* variables from command line otherwise use this one
     File::addContent(self::$root_dir_default_theme . 'Page.ss', '       <meta name="author" content="' . self::$project_company . ', ' . self::$project_company_adress . ', ' . self::$project_company_destination . ', ' . self::$project_company_web . ', ' . self::$project_company_email . '">', '<meta http-equiv');
     File::replaceContent(self::$root_dir_default_theme . 'Page.ss', '$MetaTags(false)', '$MetaTags(true)');
 }