UNPKG

bootstrap-layout

Version:

Bootstrap layout with sidebar navigation, sidebar skins, sidebar transition, custom scrollbars, sidebar menus and other advanced features and utilities

42 lines (30 loc) 925 B
{% markdown %} ```html <!DOCTYPE html> <html> <head> ... </head> <body> <!-- 1st .layout-container wrapper --> <div class="layout-container"> <!-- 1st .layout-content wrapper --> <div class="layout-content"> <!-- 2nd .layout-container wrapper --> <div class="layout-container"> <!-- 2nd .layout-content wrapper --> <div class="layout-content"> <!-- Standard Bootstrap .container-fluid for horizontal spacings --> <div class="container-fluid"> ... </div> </div><!-- // END 2nd .layout-content wrapper --> ### 2nd layout sidebar(s) can go here ### </div><!-- // END 2nd .layout-container wrapper --> </div><!-- // END 1st .layout-content wrapper --> ### 1st layout sidebar(s) can go here ### </div><!-- // END 1st .layout-container wrapper --> </body> </html> ``` {% endmarkdown %}