The header and footer won't show if not on the login or registration pages.
See layout.php starting on line 53
<body>
<?php echo $page_htmlreq; ?>
<?php
// var_dump($_SERVER['REQUEST_URI']);
# Hide the header if the page is not the registration or login page
# Bit hacky, don't like doing it this way
if (!isset($_SERVER['REQUEST_URI']) || ltrim($_SERVER['REQUEST_URI'],'/') !== SITE_URL.'/index.php/login' || ltrim($_SERVER['REQUEST_URI'],'/') !== SITE_URL.'/index.php/registration') {
if(Auth::LoggedIn()) {
Template::Show('app_top.php');
}
}
?>
<div id="content">
<?php echo $page_content; ?>
</div>
<?php
# Hide the footer if the page is not the registration or login page
# Bit hacky, don't like doing it this way
if (!isset($_SERVER['REQUEST_URI']) || ltrim($_SERVER['REQUEST_URI'],'/') !== SITE_URL.'/index.php/login' || ltrim($_SERVER['REQUEST_URI'],'/') !== SITE_URL.'/index.php/registration') {
if(Auth::LoggedIn()) {
Template::Show('app_bottom.php');
}
}
?>