/**
  * Get a template file path (relative to `option['templates_dir']`)
  *
  * @param string $name The view filename
  * @return misc FALSE if nothing had been find, the filename otherwise
  */
 public function getTemplate($name)
 {
     $locator = new Locator();
     return $locator->fallbackFinder($name);
 }