r {{> partials/sidebar }}
CodeIgniter 4 Docs - v1.0.0
CodeIgniter Structure

The CodeIgniter 4 structure of the Evohus Admin Panel is organized for clarity, flexibility, and scalability. Each major layout section — header, sidebar, content, and footer — is structured using clean and semantic markup. This modular setup allows developers to easily customize or replace individual sections without affecting others.

<?= $this->include('partials/main') ?> <head> <?php echo view('partials/title-meta', array('title' => 'Starter')); ?> <?= $this->include('partials/head-css') ?> </head> <?= $this->include('partials/body') ?> <?= $this->include('partials/topbar') ?> <?= $this->include('partials/sidebar') ?> <?= $this->include('partials/page-wrapper') ?> <div class="container-fluid"> <?php echo view('partials/page-heading', array('title' => 'Starter', "sub_title" => "UI")); ?> <?= $this->include('partials/footer') ?> </div> </div> </div> <?= $this->include('partials/vendor-scripts') ?> <script type="module" src="assets/js/main.js"></script> </body> </html>