Here is the default template with a webpage
<?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();
}
...
public function example_1()
{
$this->load->view('ci_simplicity/example_1');
}
...
}