Stisla is Free Bootstrap Admin Template and will help you to speed up your project, design your own dashboard UI and the users will love it.
- Homepage: getstisla.com
- Repository: github.com/stisla/stisla
- Documentation: getstisla.com/docs
- Download the latest release. or clone the repo :
https://github.com/KhidirDotID/stisla-codeigniter.git
- Create a new Controller at
application/controllers
then put like this:
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Controller_name extends CI_Controller {
public function index() {
$data = array(
'title' => "Your title"
);
$this->load->view('View_name', $data);
}
}
?>
- Create a new View at
application/views
then put like this:
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$this->load->view('dist/_partials/header'); ?>
<!-- Main Content -->
<?php
$this->load->view('dist/_partials/footer'); ?>
Stisla is under the MIT License.