25 lines
380 B
PHP
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');
|
|
|
|
?>
|
|
|