<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Home extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->helper('url_helper');
}
public function index()
{
if ( ! file_exists(APPPATH.'views/themes/default/templates/common/home.php'))
{
// Whoops, we don't have a page for that!
show_404();
}
$data['title'] = "Home";
$this->load->view('themes/default/templates/common/header', $data);
$this->load->view('themes/default/templates/common/home', $data);
$this->load->view('themes/default/templates/common/footer', $data);
}
}