Layout

Each page is wrapped inside a .wrapper div and it contains the following key components;

  1. Header: Includes Logo, Global Navigation Bar

  2. Main: Includes information, forms, components, and more.

  3. Global Footer: includes sitemap

<div class="wrapper sticky" id="page">
    <header class="navbar-container"></header>
    <main class="main-content">
        <section>
            <div class="container"></div>
        </section>
    </main>
    <footer></footer>
</div>

Last updated