/**
  * create twig instance for given templates path
  * @param $path
  * @return HW_Twig_Template
  */
 public static function create($path)
 {
     self::init();
     $inst = new self();
     $inst->register_twig($path);
     return $inst;
 }