mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
4.0 KiB
124 lines
4.0 KiB
---
|
|
layout: page
|
|
title: Main Sidebar Component
|
|
---
|
|
|
|
The sidebar used in this page to the left provides an example of what your sidebar would look like. Construction of a sidebar:
|
|
|
|
```html
|
|
<!-- Main Sidebar Container -->
|
|
<aside class="main-sidebar sidebar-dark-primary elevation-4">
|
|
<!-- Brand Logo -->
|
|
<a href="index3.html" class="brand-link">
|
|
<img src="dist/img/AdminLTELogo.png" alt="AdminLTE Logo" class="brand-image img-circle elevation-3"
|
|
style="opacity: .8">
|
|
<span class="brand-text font-weight-light">AdminLTE 3</span>
|
|
</a>
|
|
|
|
<!-- Sidebar -->
|
|
<div class="sidebar">
|
|
<!-- Sidebar user panel (optional) -->
|
|
<div class="user-panel mt-3 pb-3 mb-3 d-flex">
|
|
<div class="image">
|
|
<img src="dist/img/user2-160x160.jpg" class="img-circle elevation-2" alt="User Image">
|
|
</div>
|
|
<div class="info">
|
|
<a href="#" class="d-block">Alexander Pierce</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Sidebar Menu -->
|
|
<nav class="mt-2">
|
|
<ul class="nav nav-pills nav-sidebar flex-column" data-widget="treeview" role="menu">
|
|
<!-- Add icons to the links using the .nav-icon class
|
|
with font-awesome or any other icon font library -->
|
|
<li class="nav-item has-treeview menu-open">
|
|
<a href="#" class="nav-link active">
|
|
<i class="nav-icon fas fa-tachometer-alt"></i>
|
|
<p>
|
|
Starter Pages
|
|
<i class="right fas fa-angle-left"></i>
|
|
</p>
|
|
</a>
|
|
<ul class="nav nav-treeview">
|
|
<li class="nav-item">
|
|
<a href="#" class="nav-link active">
|
|
<i class="far fa-circle nav-icon"></i>
|
|
<p>Active Page</p>
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="#" class="nav-link">
|
|
<i class="far fa-circle nav-icon"></i>
|
|
<p>Inactive Page</p>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="#" class="nav-link">
|
|
<i class="nav-icon fas fa-th"></i>
|
|
<p>
|
|
Simple Link
|
|
<span class="right badge badge-danger">New</span>
|
|
</p>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<!-- /.sidebar-menu -->
|
|
</div>
|
|
<!-- /.sidebar -->
|
|
</aside>
|
|
```
|
|
{: .max-height-300}
|
|
|
|
|
|
#### Alternate Logo
|
|
You can use two logo images instead of logo with text, you only need to change the markup to this:
|
|
```html
|
|
<a href="#" class="brand-link logo-switch">
|
|
<img src="dist/img/logo-xs.png" alt="AdminLTE Docs Logo Small" class="brand-image-xl logo-xs">
|
|
<img src="dist/img/logo-xl.png" alt="AdminLTE Docs Logo Large" class="brand-image-xs logo-xl" style="left: 12px">
|
|
</a>
|
|
```
|
|
> Example from v3.0 docs.
|
|
|
|
Based on the example above, you can replace `.brand-image-xl` on `.logo-xs` with `.brand-image-xs` or vice versa on `.logo-xl` for changed logo sizes.
|
|
|
|
|
|
#### Search Form in Sidebar
|
|
You can add this code above user-panel or nav-sidebar:
|
|
```html
|
|
<form class="form-inline">
|
|
<div class="input-group">
|
|
<input class="form-control form-control-sidebar" type="search" placeholder="Search" aria-label="Search">
|
|
<div class="input-group-append">
|
|
<button class="btn btn-sidebar" type="submit">
|
|
<i class="fas fa-search"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
```
|
|
{: .max-height-300}
|
|
|
|
#### Additional Classes
|
|
|
|
##### Sidebar
|
|
- `.sidebar-no-expand` Disables Auto Expand on Hover/Focus
|
|
|
|
##### Navbar
|
|
- `.nav-child-indent` Child indent
|
|
- `.nav-compact` Compact nav items
|
|
- `.nav-flat` Flat nav style
|
|
- `.nav-legacy` Legacy v2 nav style
|
|
- `.nav-collapse-hide-child` Hide nav item submenus on collapsed sidebar
|
|
|
|
|
|
> ##### Tip!
|
|
> You can also use `.text-sm` on `.nav-sidebar` or `.brand-link` for smaller font.
|
|
{: .quote-info}
|
|
|
|
For more information about the JS part of the sidebar, please visit the [PushMenu plugin page]({% link javascript/push-menu.md %})
|