Detached Right Sticky Sidebar

content layoutDetached right sticky sidebar

The content detached right sticky sidebar layout with navigation, content area and detched right sticky sidebar.

Description

Content layout with detached right sticky sidebar provides more navigations options on page level. For the larger screen this layout provides best usability. This layout use the third column as a sticky sidebar section.

CSS Classes

This table contains all classes related to the content detached right sticky sidebar layout. This is a custom layout classes for content detached right sticky sidebar layout page requirements.

All these options can be set via following classes:

Classes Description
.content-detached-right-sidebar You can create 3 column detached right layout by adding .content-detached-right-sidebar class in <body> tag.
.content-detached In this layout content section is detached from right sticky sidebar, for that .content-detached class needs to add in content wrapper. Refer HTML markup line no 27.
.content-left In this layout content should be float in right side, so .content-left class needs to add in content wrapper. Refer HTML markup line no 27.
.sidebar-detached In this layout right sticky sidebar section is detached from content, for that .sidebar-detached class needs to add in sidebar wrapper. Refer HTML markup line no 33.
.sidebar-right In this layout sidebar should be float in right side, so .sidebar-right class needs to add in sidebar wrapper. Refer HTML markup line no 33.
.sidebar-sticky To create sticky sidebar add .sidebar-sticky class. Refer HTML markup line no 34.

HTML Markup

This section contains HTML Markup to create 3 column detached right sticky sidebar layout. You need to add the .content-detached-right-sidebar class in the <body> tag as show in below markup on line no 4. This layout has a navigation, content and right detached sidebar sections with common header & footer.

  • Line no 27: Contain the .content-detached and .content-left classes for adjusting detached content section in right side.
  • Line no 33: Contain the .sidebar-detached and .sidebar-right classes for adjusting detached sidebar section in right side.
  • Line no 34: Contain the .sidebar-sticky class, that will make the detached right sidebar sticky.

Robust has a ready to use starter kit, you can use this layout directly by using the sk-content-detached-right-sticky-sidebar.html

        
            <!DOCTYPE html>
              <html lang="en">
                <head></head>
                <body data-menu="vertical-menu" class="vertical-layout vertical-menu content-detached-right-sidebar menu-expanded">
                  
                  <!-- navbar-fixed-top-->
                  <nav role="navigation" class="header-navbar navbar navbar-with-menu navbar-fixed-top navbar-dark navbar-shadow navbar-border">
                      ...
                  </nav>
                  
                  <!-- BEGIN Navigation-->
                  <div class="main-menu menu-dark menu-fixed menu-shadow">
                      ...
                  </div>
                  <!-- END Navigation-->

                  <!-- BEGIN Content-->
                  <div class="content robust-content container-fluid">
                      <div class="content-wrapper">
                          <!-- content header-->
                          <div class="content-header row">
                              ...
                          </div>
                          <!-- content header-->
                          
                          <!-- content detached right-->
                          <div class="content-detached content-left">
                              ...
                          </div>
                          <!-- content detached right-->
                          
                          <!-- sidebar detached right-->
                          <div class="sidebar-detached sidebar-right">
                              <div class="sidebar sidebar-sticky">
                                  ...
                              </div>
                          </div>
                          <!-- sidebar detached right-->
                          
                      </div>
                  </div>
                  <!-- END Content-->


                  <!-- START FOOTER DARK-->
                  <footer class="footer footer-dark">
                      ...
                  </footer>
                  <!-- START FOOTER DARK-->

                </body>
              </html>
        
        

JADE Configuration

Robust Admin use JADE as template engine to generate pages and whole template quickly using node js, for getting start with JADE usage & template generating process please refer template documentation.

JADE Variables

This table contains required JADE variables to generate 3 column detached right sticky sidebar layout.

Variable Value Description
contentLayout 'content-detached-right-sidebar' You need to set contentLayout variable value as 'content-detached-right-sidebar' in pageConfig block.
sidebarSticky true You need to set sidebarSticky variable value as true in pageConfig block to enable right sticky sidebar.
JADE Code

To generate content detached right sticky sidebar layout page or template, you need to use following JADE code.

  • Line no 20-24: pageConfig block has a template specific configuration variables, in that for 3 column layout need to define variable - var contentLayout = 'content-detached-right-sidebar'
  • Line no 25: To make right sticky sidebar pageConfig block also require - var sidebarSticky = true configuration variables, set value as true to enable it.
  • Line no 33-34: content block has content section html file included include ../contents/layout-content-detached-right-sticky-sidebar.html, which can be customizable on page level.
  • Line no 36-37: sidebar block has sidebar section html file included include ../contents/sidebar-common.html, which can be customizable on page level.

If you want to use this layout on page level you need to define it on page it self. This template has one example jade file for content detached right sticky sidebar content-detached-right-sticky-sidebar.jade, however you can use it on template level but it will generate whole template as a content detached right sticky sidebar.

              
                  block pageVars
                    - var pageTitle    = "Content"
                    - var pageSubTitle = "Detached right sticky sidebar"
                    - var description  = "The full width content detached right sticky sidebar layout have navigation, content area and detached right sticky sidebar."
                    - var activeMenu   = "content-detached-right-sidebar"
                  
                  extends template
                  
                  block pageConfig
                    - var templateCustom = "vertical-layout vertical-menu" //- OPTIONS: menu-flipped
                    - var dataMenu = "vertical-menu"
                    - var boxedLayout = false  //- OPTIONS:- true, false
                    - var contentLayout = 'content-detached-right-sidebar'
                    - var sidebarSticky = true
                  
                  append breadcrumbs
                    include ../includes/mixins
                    +breadcrumbs([{url:"index.html",name:"Home"},{url:"#",name:"Starters"}, {name:"Content detached right sticky sidebar"}])
                  
                  append page-header
                    include page-headers/breadcrumb-top
                  
                  append content
                    include ../contents/layout-content-detached-right-sticky-sidebar.html
                  
                  append sidebar
                    include ../contents/sidebar-common.html
                  
                  //- Page specific dependency
                  //------------------------------
                  
                  //- Add custom page specific CSS
                  block pagecss
                    link(rel='stylesheet', type='text/css', href='robust-assets/css/plugins/ui/prism.min.css')
                  
                  //- Add custom page specific JS
                  block pagejs
                    script(src='robust-assets/js/plugins/ui/prism.min.js', type='text/javascript')