This is just an example view of the home page. You can easily load whatever html file you like here with a normal codeigniter view.
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Example extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->helper('url');
$this->_init();
}
private function _init()
{
$this->output->set_template('default');
$this->load->js('assets/themes/default/js/jquery-1.9.1.min.js');
$this->load->js('assets/themes/default/hero_files/bootstrap-transition.js');
$this->load->js('assets/themes/default/hero_files/bootstrap-collapse.js');
}
public function index()
{
$this->load->view('ci_simplicity/welcome');
}
...
}