Description
Modern Admin provides light, dark, transparent color footer options with fixed footer option.
Footer Light
CSS Classes
This table contains all classes which can be used in light footer. You can combine them as per footer light template requirements.
All these options can be set via following classes:
Classes | Description |
---|---|
.footer-light |
To set footer light color you need to add .footer-light class in footer <footer> tag. Refer HTML markup line no 37. |
This section contains HTML Markup to create light footer. This markup define where to add css classes to make footer light.
- Line no 37: Contain the
.footer-light
class for adjusting footer color light.
<!DOCTYPE html>
<html lang="en">
<head></head>
<body data-menu="vertical-menu" class="vertical-layout vertical-menu 2-column menu-expanded">
<!-- fixed-top-->
<nav role="navigation" class="header-navbar navbar navbar-with-menu fixed-top navbar-light navbar-shadow navbar-border">
...
</nav>
<!-- BEGIN Navigation-->
<div class="main-menu menu-light 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-light">
...
</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 light footer.
Variable | Value | Description |
---|---|---|
footerCustom |
'footer-light' |
You need add footer light class to footerCustom variable value as 'footer-light' in footerConfig block, it contains footer specific classes in that you need to add footer-light . |
PUG Code
To generate footer light page or template, you need to use following PUG code.
- Line no 20-21:
footerConfig
block has afooterCustom
variable, it contains footer specific classes in that you need to addfooter-light
class. - Line no 32-33:
content
block has content section html file includedinclude ../contents/footer-light.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 light footer footer-light.pug
, however you can use it on template level but it will generate whole template footer light.
block pageVars
- var pageTitle = "Footer Light"
- var pageSubTitle = "Light color footer"
- var description = "The light color footer with custom light color options & other styling options."
- var activeMenu = "footer-light"
extends template
block footerConfig
- var footerCustom = "footer footer-light"
append breadcrumbs
include ../includes/mixins
+breadcrumbs([{url:"index.html",name:"Home"},{url:"#",name:"Footer"}, {name:"Footer Light"}])
append page-header
include page-headers/breadcrumb-top
//- Include page content in page block
append content
include ../contents/footer-light.html
//- Page specific dependency
//------------------------------
//- Add custom page specific CSS
block pagecss
//- Add custom page specific JS
block pagejs
Refer following links for detailed documentation, configuration options, methods and examples:
Type | URL |
---|---|
Footer Light | https://pixinvent.com/modern-admin-clean-bootstrap-4-dashboard-html-template/html/ltr/vertical-menu-template/footer-light.html |
Footer Dark
CSS Classes
This table contains all classes which can be used in dark footer. You can combine them as per footer dark template requirements.
All these options can be set via following classes:
Classes | Description |
---|---|
.footer-dark |
To set footer dark color you need to add .footer-dark class in footer <footer> tag. Refer HTML markup line no 37. |
This section contains HTML Markup to create dark footer. This markup define where to add css classes to make footer dark.
- Line no 37: Contain the
.footer-dark
class for adjusting footer color dark.
<!DOCTYPE html>
<html lang="en">
<head></head>
<body data-menu="vertical-menu" class="vertical-layout vertical-menu 2-column menu-expanded">
<!-- 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 dark footer.
Variable | Value | Description |
---|---|---|
footerCustom |
'footer-dark' |
You need add footer dark class to footerCustom variable value as 'footer-dark' in footerConfig block, it contains footer specific classes in that you need to add footer-dark . |
PUG Code
To generate footer dark page or template, you need to use following PUG code.
- Line no 20-21:
footerConfig
block has afooterCustom
variable, it contains footer specific classes in that you need to addfooter-dark
class. - Line no 32-33:
content
block has content section html file includedinclude ../contents/footer-dark.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 dark footer footer-dark.pug
, however you can use it on template level but it will generate whole template footer dark.
block pageVars
- var pageTitle = "Footer Dark"
- var pageSubTitle = "Dark color footer"
- var description = "The dark color footer with custom dark color options & other styling options."
- var activeMenu = "footer-dark"
extends template
block footerConfig
- var footerCustom = "footer footer-dark"
append breadcrumbs
include ../includes/mixins
+breadcrumbs([{url:"index.html",name:"Home"},{url:"#",name:"Footer"}, {name:"Footer Dark"}])
append page-header
include page-headers/breadcrumb-top
//- Include page content in page block
append content
include ../contents/footer-dark.html
//- Page specific dependency
//------------------------------
//- Add custom page specific CSS
block pagecss
//- Add custom page specific JS
block pagejs
Refer following links for detailed documentation, configuration options, methods and examples:
Type | URL |
---|---|
Footer Dark | https://pixinvent.com/modern-admin-clean-bootstrap-4-dashboard-html-template/html/ltr/vertical-menu-template/footer-dark.html |
Footer Transparent
CSS Classes
This table contains all classes which can be used in transparent footer. You can combine them as per footer transparent template requirements.
All these options can be set via following classes:
Classes | Description |
---|---|
.footer-transparent |
To set footer transparent you need to add .footer-transparent class in footer <footer> tag. Refer HTML markup line no 37. |
This section contains HTML Markup to create transparent footer. This markup define where to add css classes to make footer transparent.
- Line no 37: Contain the
.footer-transparent
class for adjusting footer color transparent.
<!DOCTYPE html>
<html lang="en">
<head></head>
<body data-menu="vertical-menu" class="vertical-layout vertical-menu 2-column menu-expanded">
<!-- fixed-top-->
<nav role="navigation" class="header-navbar navbar navbar-with-menu fixed-top navbar-transparent navbar-shadow navbar-border">
...
</nav>
<!-- BEGIN Navigation-->
<div class="main-menu menu-transparent 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-transparent">
...
</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 transparent footer.
Variable | Value | Description |
---|---|---|
footerCustom |
'footer-transparent' |
You need add footer transparent class to footerCustom variable value as 'footer-transparent' in footerConfig block, it contains footer specific classes in that you need to add footer-transparent . |
PUG Code
To generate footer transparent page or template, you need to use following PUG code.
- Line no 20-21:
footerConfig
block has afooterCustom
variable, it contains footer specific classes in that you need to addfooter-transparent
class. - Line no 32-33:
content
block has content section html file includedinclude ../contents/footer-transparent.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 transparent footer footer-transparent.pug
, however you can use it on template level but it will generate whole template footer transparent.
block pageVars
- var pageTitle = "Footer Transparent"
- var pageSubTitle = "Transparent color footer"
- var description = "The transparent color footer with custom transparent color options & other styling options."
- var activeMenu = "footer-transparent"
extends template
block footerConfig
- var footerCustom = "footer footer-transparent"
append breadcrumbs
include ../includes/mixins
+breadcrumbs([{url:"index.html",name:"Home"},{url:"#",name:"Footer"}, {name:"Footer Transparent"}])
append page-header
include page-headers/breadcrumb-top
//- Include page content in page block
append content
include ../contents/footer-transparent.html
//- Page specific dependency
//------------------------------
//- Add custom page specific CSS
block pagecss
//- Add custom page specific JS
block pagejs
Refer following links for detailed documentation, configuration options, methods and examples:
Type | URL |
---|---|
Footer Transparent | https://pixinvent.com/modern-admin-clean-bootstrap-4-dashboard-html-template/html/ltr/vertical-menu-template/footer-transparent.html |
Footer Fixed
CSS Classes
This table contains all classes which can be used in fixed footer. You can combine them as per footer fixed template requirements.
All these options can be set via following classes:
Classes | Description |
---|---|
.navbar-fixed-bottom |
To set footer fixed you need to add .navbar-fixed-bottom class in footer <footer> tag. Refer HTML markup line no 37. |
Default fixed footer color is light, You can use .footer-dark
& .footer-transparent
with .navbar-fixed-bottom
.
You can also use styling options i.e .footer-border
& .footer-shadow
with .navbar-fixed-bottom
This section contains HTML Markup to create fixed footer. This markup define where to add css classes to make footer fixed.
- Line no 37: Contain the
.navbar-fixed-bottom
class for adjusting footer fixed. - Line no 37: Also contain the
.footer-light
&.footer-shadow
classes for adjusting footer color and shadow. Those are optional classes.
<!DOCTYPE html>
<html lang="en">
<head></head>
<body data-menu="vertical-menu" class="vertical-layout vertical-menu 2-column menu-expanded">
<!-- fixed-top-->
<nav role="navigation" class="header-navbar navbar navbar-with-menu fixed-top navbar-transparent navbar-shadow navbar-border">
...
</nav>
<!-- BEGIN Navigation-->
<div class="main-menu menu-transparent 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="navbar footer navbar-fixed-bottom footer-light footer-shadow content container-fluid">
...
</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 fixed footer.
Variable | Value | Description |
---|---|---|
footerCustom |
'navbar-fixed-bottom' |
You need add footer fixed class to footerCustom variable value as 'navbar-fixed-bottom' in footerConfig block, it contains footer specific classes. |
PUG Code
To generate footer fixed page or template, you need to use following PUG code.
- Line no 20-21:
footerConfig
block has afooterCustom
variable, it contains footer specific classes in that you need to addnavbar-fixed-bottom
class. - Line no 20-21: You can use
.footer-light
,.footer-dark
&.footer-transparent
color options. - Line no 20-21: You can also use
.footer-line
&.footer-shadow
styling options. - Line no 32-33:
content
block has content section html file includedinclude ../contents/footer-fixed.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 fixed footer footer-fixed.pug
, however you can use it on template level but it will generate whole template footer fixed.
block pageVars
- var pageTitle = "Footer Fixed"
- var pageSubTitle = "Fixed color footer"
- var description = "The Fixed footer options used to make your footer set to be fixed at bottom."
- var activeMenu = "footer-fixed"
extends template
block footerConfig
- var footerCustom = "navbar-fixed-bottom footer-light footer-shadow"
append breadcrumbs
include ../includes/mixins
+breadcrumbs([{url:"index.html",name:"Home"},{url:"#",name:"Footer"}, {name:"Footer Fixed"}])
append page-header
include page-headers/breadcrumb-top
//- Include page content in page block
append content
include ../contents/footer-fixed.html
//- Page specific dependency
//------------------------------
//- Add custom page specific CSS
block pagecss
//- Add custom page specific JS
block pagejs
Refer following links for detailed documentation, configuration options, methods and examples:
Type | URL |
---|---|
Footer Fixed | https://pixinvent.com/modern-admin-clean-bootstrap-4-dashboard-html-template/html/ltr/vertical-menu-template/footer-fixed.html |