A quick starter code for developer who want to use Codeigniter with Smarty Template Engine
- CodeIgniter: 3.0.0
- Smarty: 3.1.27
Create your template under the folder
application/views/templates/
In your controller, instead of rendering view using
$this->load->view('your_template');
use the custom View Library
$this->view->render('your_template.tpl');