Description

2 Columns layout is the most common and popular layout, it has a navigation with content section. This layout use the common navbar and footer sections, however you can add customized header or footer on page level.

CSS Classes

This table contains all classes related to the 2 columns layout. This is a custom layout classes for 2 columns layout page requirements.

All these options can be set via following classes:

Classes Description
.2-columns You can create 2 columns layout by adding 2-columns class in <body> tag.

HTML Markup

This layout has a navigation and content sections with common header & footer.

Frest has a ready to use starter kit, you can use this layout directly by using the starter kit pages from the frest-clean-bootstrap-admin-dashboard-template/starter-kit folder.

        
            <!DOCTYPE html>
              <html lang="en">
                <head></head>
                <body class="vertical-layout vertical-menu-modern 2-columns navbar-sticky footer-static menu-expanded" data-menu="vertical-menu-modern" >

                  <!-- fixed-top-->
                  <nav class="header-navbar navbar-expand-lg navbar navbar-with-menu fixed-top navbar-light navbar-shadow">
                  </nav>

                  <!-- Begin Navigation-->
                  <div class="main-menu menu-fixed menu-light menu-accordion menu-shadow expanded">
                  </div>
                  <!-- End Navigation-->

                  <!-- Begin Content-->
                  <div class="content app-content">
                  </div>
                  <!-- End Content-->

                  <!-- Start Footer light -->
                  <footer class="footer footer-static footer-light">
                  </footer>
                  <!-- End Footer -->

                </body>
              </html>