CSS Classes
This table contains all classes related to the boxed layout, by using these layout specific classes you can apply its css.
All these options can be set via following classes:
Classes | Description |
---|---|
.container |
This is the bootstrap class, the .container class provides a responsive fixed width container To create boxed layout you need to add .container class in <body> tag. |
.boxed-layout |
To create boxed-layout you also require to use .boxed-layout class in <body> tag, this class help page to identify the layout type. |
This section contains HTML Markup to create boxed layout page. You need to add the .boxed-layout
class in the <body>
tag as show in below markup on line no 4. This layout has a navigation, content and left sidebar sections with common header & footer.
- Line no 4: Contain the and
.container
and.boxed-layout
classes for applying boxed layout css to page.
Modern has a ready to use starter kit, you can use this layout directly by using the boxed-layout.html
<!DOCTYPE html>
<html lang="en">
<head></head>
<body data-menu="vertical-menu" class="vertical-layout vertical-menu 2-columns container boxed-layout menu-collapsed">
<!-- fixed-top-->
<nav role="navigation" class="header-navbar navbar navbar-with-menu 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 modern-content container-fluid">
<div class="content-wrapper">
<!-- content header-->
<div class="content-header row">
...
</div>
<!-- content header-->
<!-- content body-->
<div class="content-body">
...
</div>
<!-- content body-->
</div>
</div>
<!-- END Content-->
<!-- START FOOTER DARK-->
<footer class="footer footer-dark">
...
</footer>
<!-- START FOOTER DARK-->
</body>
</html>
Modern Admin use PUG as template engine to generate pages and whole template quickly using node js, for getting start with PUG usage & template generating process please refer template documentation.
PUG Variables
This table contains required PUG variables to generate 3 column left sidebar layout.
Variable | Value | Description |
---|---|---|
boxedLayout |
true |
You must have to set boxedLayout variable value as true in pageConfig block, this will be used in pug condition to add .boxed-layout and .container class to <body> . |
contentLayout |
'2-columns' |
You need to set contentLayout variable value as '2-columns' in pageConfig block. |
PUG Code
To generate boxed layout page or template, you need to use following PUG code.
- Line no 23:
pageConfig
block has a template specific configuration variables, in that for boxed layout you need to define variable- var boxedLayout = true
. - Line no 24:
pageConfig
block also require to define variable- var contentLayout = '2-columns'
as boxed layout use 2 columns. - Line no 34-35:
content
block has content section html file includedinclude ../contents/boxed-layout.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 pug file for boxed layout boxed-layout.pug
, however you can use it on template level but it will generate whole template as a content left sidebar.
block pageVars
- var pageTitle = "Boxed Layout"
- var pageSubTitle = "Boxed layout with collapsed navigation"
- var description = "The boxed layout has a padding around the main wrapper as well as a background applied to it."
- var activeMenu = "layout-boxed"
extends template
append pageConfig
- var boxedLayout = true
append breadcrumbs
+breadcrumbs([{url:"index.html",name:"Home"},{url:"#",name:"Page Layouts"}, {name:"Boxed Layout"}])
//- Include page content in page block
append content
include ../contents/layout-boxed.html
//- Vendor CSS
append vendorcss
link(rel='stylesheet', type='text/css', href='../app-assets/vendors/css/ui/prism.min.css')
//- Vendor JS
//------------------------------
//- Add vendor specific JS
append vendorjs
script(type='text/javascript' ,src='../app-assets/vendors/js/ui/prism.min.js')
Refer following links for detailed documentation, configuration options, methods and examples:
Type | URL |
---|---|
Boxed Layout | https://pixinvent.com/modern-admin-clean-bootstrap-4-dashboard-html-template/html/ltr/vertical-menu-template/layout-boxed.html |