class home extends didy {
function __construct(){
parent::__construct();
$this->process->dbase();
$this->process->view('include\head');
$this->_insert->css_style('didy_style');
$this->process->view('include\body');
}
public function index(){
$this->process->view('home');
$this->process->view('include\footer');
}
}