public static function partial($path, $variables = array())
 {
     foreach ($variables as $key => $value) {
         ${$key} = $value;
     }
     if (!moojon_partials::has($path)) {
         moojon_partials::set($path, require_once $path);
     }
     moojon_partials::get($path);
 }