/**
  * Return the content of the view
  *
  * @return string
  */
 public function content()
 {
     ob_start();
     $this->_file->output();
     $content = ob_get_contents();
     ob_end_clean();
     return $content;
 }