I\'m wondering how to load a template from it\'s full path (like FILE constant give).
Actually you have to set a \"root\" path for template like thi
Extend the loader better than modify the library:
cache[$name])) { return $this->cache[$name]; } if(is_file($name)) { $this->cache[$name] = $name; return $name; } return parent::findTemplate($name); } }