bootstrap-layout
Version:
Bootstrap layout with sidebar navigation, sidebar skins, sidebar transition, custom scrollbars, sidebar menus and other advanced features and utilities
19 lines (16 loc) • 520 B
HTML
{% markdown %}
> Before closing the `<body>` tag:
```html
<!-- jQuery -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap Layout -->
<script src="node_modules/bootstrap-layout/dist/bootstrap-layout.js"></script>
<!-- Global namespace -->
<!-- You have access to various classes and methods via the BootstrapLayout global namespace -->
<script>
// Global namespace example
// Show a sidebar programatically
BootstrapLayout.sidebar.show('#my-sidebar')
</script>
```
{% endmarkdown %}