content = file_get_contents(__DIR__ . '/template.html'); if(is_file($this->getView()['location'])){ $this->content = str_replace('{{>content}}', $this->replaceSections(file_get_contents($this->getView()['location']), $this->_view['values']), $this->content); }else{ $this->content = str_replace('{{>content}}', '', $this->content); } $this->implate(); } }