Bootstrap framework written completely using mixins in PUG
Several quick start options are available:
* [Download the latest release] (https://github.com/rajasegar/bootstrap-pug/archive/master.zip)
* Clone the repo: git clone https://github.com/rajasegar/bootstrap-pug.git
.
* Install with npm: npm install bootstrap-pug
.
Within the download you'll find the following directories and files, logically grouping common mixins. You'll see something like this:
``` bootstrap.pug ├── components/ │ ├── accordion.pug │ ├── alerts.pug │ ├── carousel.pug │ ├── dropdowns.pug │ ├── forms.pug │ ├── icons.pug │ ├── labels.pug │ ├── list-groups.pug │ ├── modal.pug │ ├── navbar.pug │ ├── navs.pug │ ├── panels.pug │ ├── progress-bars.pug │ ├── tables.pug │ ├── tabs.pug │ ├── toggle.pug │ └── tooltips.pug └── layouts/ ├── blog.pug ├── carousel.pug ├── cover.pug ├── dashboard.pug ├── jumbotron.pug ├── jumbotron-narrow.pug ├── justified-nav.pug ├── navbar.pug ├── navbarfixed.pug ├── navbarstatic.pug ├── non-responsive.pug ├── offcanvas.pug ├── sign-in.pug ├── starter.pug ├── sticky-footer.pug ├── sticky-footer-navbar.pug └── theme-template.pug
```