bbone/application/modules/Layout/views/my_layout.php
2022-12-16 00:23:18 +05:30

25 lines
380 B
PHP

<head>
<?php
// Get the page head content
$this->layout->load_view('layout/includes/head');
?>
</head>
<?php
// Get the navigation bar
$this->layout->load_view('layout/includes/navbar');
?>
<div id="main-content">
<?php echo $main_content; ?>
</div>
<?php
// Get the navigation bar
$this->layout->load_view('layout/includes/footer');
?>