Skip to content

ku-kom/bootstrap

Repository files navigation

Slack Bower version npm version Build Status devDependency Status NuGet

Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created by Mark Otto and Jacob Thornton, and maintained by the core team with the massive support and involvement of the community.

To get started, check out http://getbootstrap.com!

Table of contents

Quick start

What's included

Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:

bootstrap/
  ├── dist/
      ├── css/
          ├── bootstrap.css
          ├── bootstrap.min.css
      ├── js/
          ├── bootstrap.js
          └── bootstrap.min.js
      └── fonts/
          ├── glyphicons-halflings-regular.eot
          ├── glyphicons-halflings-regular.svg
          ├── glyphicons-halflings-regular.ttf
          ├── glyphicons-halflings-regular.woff
          └── glyphicons-halflings-regular.woff2
          ├── KU.eot
          ├── KU.svg
          ├── KU.ttf
          ├── KU.woff
          └── KU.woff2

We provide compiled CSS and JS (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*). CSS source maps (bootstrap.*.map) are available for use with certain browsers' developer tools. Fonts from Glyphicons are included, as is the optional Bootstrap theme.

Documentation

Bootstrap's documentation, included in this repo in the root directory, is built with Jekyll and publicly hosted on GitHub Pages at http://getbootstrap.com. The docs may also be run locally.

Running documentation locally

  1. If necessary, install Jekyll and other Ruby dependencies with bundle install. Note for Windows users: Read this unofficial guide to get Jekyll up and running without problems.
  2. From the root /bootstrap directory, run bundle exec jekyll serve in the command line.
  3. Open http://localhost:4000/bootstrap/ in your browser, and voilà.

Learn more about using Jekyll by reading its documentation.

Workflow and committing changes

  • Work in the development branch. Run grunt to compile.
  • Run the following commands to push the changes to development and master branches.
  1. git add .
  2. git commit -m "Enter a commit description"
  3. git push
  4. git checkout master
  5. git merge development
  6. git push
  7. git checkout development

Creators

Mark Otto

Jacob Thornton

Copyright and license

Code and documentation copyright 2011-2016 Twitter, Inc. Code released under the MIT license. Docs released under Creative Commons.