An example of page header with page title, breadcrumbs, content title and round buttons. You can check the above page header section which contain breadcrumbs with round button example.
This section contains HTML Markup to create page with breadcrumbs with round button.
You can use below HTML breadcrumbs with round button page header snippet in any type of layout. You can also custom above HTML snippet as per your requirements. Modern has a ready to use 10 different types of page headers.
<div class="content-header row">
<div class="content-header-left col-md-6 col-12">
<h2 class="content-header-title mb-0">Breadcrumbs with button 2</h2>
<div class="row breadcrumbs-top">
<div class="breadcrumb-wrapper col-12">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a>
</li>
<li class="breadcrumb-item"><a href="#">Page headers</a>
</li>
<li class="breadcrumb-item active">Breadcrumbs with button 2
</li>
</ol>
</div>
</div>
</div>
<div class="content-header-right text-md-right col-md-6 col-12">
<div class="form-group"></div>
<!-- Round Outline Icon Buttons-->
<button type="button" class="btn-icon btn btn-secondary btn-round"><i class="la la-bell-o"></i></button>
<button type="button" class="btn-icon btn btn-secondary btn-round"><i class="la la-life-ring"></i></button>
<button type="button" class="btn-icon btn btn-secondary btn-round"><i class="la la-cog"></i></button>
</div>
<div class="content-header-lead col-12 mt-2">
<p class="lead">Page header with page title, breadcrumbs, content title and round buttons.</p>
</div>
</div>
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 block to generate page with breadcrumbs with round buttons.
Block | Parameter | Description |
---|---|---|
page-header |
'include page-headers/breadcrumbs-with-round-button' |
You need to append page-header block parameter
as 'include page-headers/breadcrumbs-with-round-button' . |
PUG Code
To generate page with breadcrumbs with round buttons header or template, you need to use following PUG code.
Line no 22-23: page-header
block has a page/template
specific configuration parameter, in that for breadcrumbs with round
buttons header you need to define parameter include page-headers/breadcrumbs-with-round-button
.
However you can create your own page header PUG file in pages/page-headers
folder.
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 with breadcrumbs
with round buttons breadcrumbs-with-round-button.pug
.
block pageVars
- var pageTitle = "breadcrumbs with round button 2"
- var pageSubTitle = "Page header with round buttons"
- var description = "Page header with page title, breadcrumbs, content title and round buttons."
- var activeMenu = "headers-breadcrumbs-with-round-button"
extends template
append breadcrumbs
+breadcrumbs([{url:"index.html",name:"Home"},{url:"#",name:"Page headers"}, {name:"breadcrumbs with round button 2"}])
append page-header
include page-headers/breadcrumbs-with-round-button
//- Include page content in page block
append content
include ../contents/headers-breadcrumbs-with-round-button.html
//- Page specific dependency
//------------------------------
//- Add custom page specific CSS
block pagecss
link(rel='stylesheet', type='text/css', href='../../../app-assets/css/plugins/ui/prism.min.css')
//- Add custom page specific JS
block pagejs
script(type='text/javascript' ,src='../../../app-assets/vendors/js/ui/prism.min.js')