Skip to content
Snippets Groups Projects
Commit ce25c128 authored by Matthieu Guffroy's avatar Matthieu Guffroy
Browse files

Edit archi

parent 9b532491
No related branches found
No related tags found
No related merge requests found
<?php
include 'view/index.php';
\ No newline at end of file
<?php include 'template/header.php'; ?>
<?php include 'template/menu.php'; ?>
<!-- Begin page content -->
<div class="container">
<div class="page-header">
<h1>Sticky footer with fixed navbar</h1>
</div>
<p class="lead">Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS. A fixed navbar has been added with <code>padding-top: 60px;</code> on the <code>body > .container</code>.</p>
<p>Back to <a href="../sticky-footer">the default sticky footer</a> minus the navbar.</p>
</div>
<?php include 'template/footer.php'; ?>
\ No newline at end of file
<?php
// This file is the main controller
include 'template/header.php';
// TODO: Handle url to detect wich controller to call
// Show the menu, the previous part have set wich page we are on to set the "active" class in menu
include 'template/menu.php';
// TODO: Call the correct controller
include 'controller/index.php';
// Show the footer
include 'template/footer.php';
?>
<!-- Begin page content -->
<div class="container">
<div class="page-header">
<h1>Sticky footer with fixed navbar</h1>
</div>
<p class="lead">Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS. A fixed navbar has been added with <code>padding-top: 60px;</code> on the <code>body > .container</code>.</p>
<p>Back to <a href="../sticky-footer">the default sticky footer</a> minus the navbar.</p>
</div>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment