public static function render_template($path = null, $name = null, $params = null)
 {
     $html = '';
     ob_start();
     Template_Helper::get_template($path, $name, $params);
     $html .= ob_get_contents();
     ob_get_clean();
     return $html;
 }