twigg-app 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/data/quips.yml +45 -0
- data/lib/twigg-app/app/quips.rb +13 -0
- data/lib/twigg-app/app/routes.rb +43 -0
- data/lib/twigg-app/app/server.rb +146 -0
- data/lib/twigg-app/app/version.rb +5 -0
- data/lib/twigg-app/app.rb +14 -0
- data/lib/twigg-app.rb +5 -0
- data/public/application.js +106 -0
- data/public/favicon.ico +0 -0
- data/public/favicon.png +0 -0
- data/public/vendor/bootstrap/CNAME +1 -0
- data/public/vendor/bootstrap/CONTRIBUTING.md +66 -0
- data/public/vendor/bootstrap/Gruntfile.js +195 -0
- data/public/vendor/bootstrap/LICENSE +176 -0
- data/public/vendor/bootstrap/README.md +139 -0
- data/public/vendor/bootstrap/_config.yml +28 -0
- data/public/vendor/bootstrap/_includes/ads.html +1 -0
- data/public/vendor/bootstrap/_includes/footer.html +33 -0
- data/public/vendor/bootstrap/_includes/header.html +43 -0
- data/public/vendor/bootstrap/_includes/nav-components.html +135 -0
- data/public/vendor/bootstrap/_includes/nav-css.html +77 -0
- data/public/vendor/bootstrap/_includes/nav-customize.html +40 -0
- data/public/vendor/bootstrap/_includes/nav-getting-started.html +28 -0
- data/public/vendor/bootstrap/_includes/nav-javascript.html +88 -0
- data/public/vendor/bootstrap/_includes/nav-main.html +32 -0
- data/public/vendor/bootstrap/_includes/old-bs-docs.html +8 -0
- data/public/vendor/bootstrap/_includes/social-buttons.html +16 -0
- data/public/vendor/bootstrap/_layouts/customize.html +52 -0
- data/public/vendor/bootstrap/_layouts/default.html +72 -0
- data/public/vendor/bootstrap/_layouts/home.html +43 -0
- data/public/vendor/bootstrap/assets/css/docs.css +896 -0
- data/public/vendor/bootstrap/assets/css/pygments-manni.css +66 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/favicon.png +0 -0
- data/public/vendor/bootstrap/assets/js/application.js +82 -0
- data/public/vendor/bootstrap/assets/js/customizer.js +175 -0
- data/public/vendor/bootstrap/assets/js/holder.js +419 -0
- data/public/vendor/bootstrap/assets/js/html5shiv.js +8 -0
- data/public/vendor/bootstrap/assets/js/jquery.bbq.min.js +1287 -0
- data/public/vendor/bootstrap/assets/js/jquery.js +5 -0
- data/public/vendor/bootstrap/assets/js/jszip.js +1425 -0
- data/public/vendor/bootstrap/assets/js/less.js +9 -0
- data/public/vendor/bootstrap/assets/js/respond.min.js +6 -0
- data/public/vendor/bootstrap/assets/js/uglify.js +14 -0
- data/public/vendor/bootstrap/bower.json +11 -0
- data/public/vendor/bootstrap/browserstack.json +37 -0
- data/public/vendor/bootstrap/components.html +2555 -0
- data/public/vendor/bootstrap/composer.json +20 -0
- data/public/vendor/bootstrap/css.html +2276 -0
- data/public/vendor/bootstrap/customize.html +1480 -0
- data/public/vendor/bootstrap/dist/css/bootstrap.css +5579 -0
- data/public/vendor/bootstrap/dist/css/bootstrap.min.css +9 -0
- data/public/vendor/bootstrap/dist/js/bootstrap.js +1993 -0
- data/public/vendor/bootstrap/dist/js/bootstrap.min.js +6 -0
- data/public/vendor/bootstrap/getting-started.html +375 -0
- data/public/vendor/bootstrap/index.html +16 -0
- data/public/vendor/bootstrap/javascript.html +1904 -0
- data/public/vendor/bootstrap/js/affix.js +126 -0
- data/public/vendor/bootstrap/js/alert.js +98 -0
- data/public/vendor/bootstrap/js/button.js +109 -0
- data/public/vendor/bootstrap/js/carousel.js +217 -0
- data/public/vendor/bootstrap/js/collapse.js +179 -0
- data/public/vendor/bootstrap/js/dropdown.js +154 -0
- data/public/vendor/bootstrap/js/modal.js +244 -0
- data/public/vendor/bootstrap/js/popover.js +117 -0
- data/public/vendor/bootstrap/js/scrollspy.js +158 -0
- data/public/vendor/bootstrap/js/tab.js +135 -0
- data/public/vendor/bootstrap/js/tests/index.html +52 -0
- data/public/vendor/bootstrap/js/tests/phantom.js +63 -0
- data/public/vendor/bootstrap/js/tests/server.js +14 -0
- data/public/vendor/bootstrap/js/tests/unit/affix.js +25 -0
- data/public/vendor/bootstrap/js/tests/unit/alert.js +62 -0
- data/public/vendor/bootstrap/js/tests/unit/button.js +116 -0
- data/public/vendor/bootstrap/js/tests/unit/carousel.js +87 -0
- data/public/vendor/bootstrap/js/tests/unit/collapse.js +164 -0
- data/public/vendor/bootstrap/js/tests/unit/dropdown.js +219 -0
- data/public/vendor/bootstrap/js/tests/unit/modal.js +177 -0
- data/public/vendor/bootstrap/js/tests/unit/phantom.js +69 -0
- data/public/vendor/bootstrap/js/tests/unit/popover.js +133 -0
- data/public/vendor/bootstrap/js/tests/unit/scrollspy.js +37 -0
- data/public/vendor/bootstrap/js/tests/unit/tab.js +86 -0
- data/public/vendor/bootstrap/js/tests/unit/tooltip.js +437 -0
- data/public/vendor/bootstrap/js/tests/unit/transition.js +13 -0
- data/public/vendor/bootstrap/js/tests/vendor/jquery.js +5 -0
- data/public/vendor/bootstrap/js/tests/vendor/qunit.css +232 -0
- data/public/vendor/bootstrap/js/tests/vendor/qunit.js +1510 -0
- data/public/vendor/bootstrap/js/tooltip.js +382 -0
- data/public/vendor/bootstrap/js/transition.js +56 -0
- data/public/vendor/bootstrap/less/alerts.less +71 -0
- data/public/vendor/bootstrap/less/badges.less +51 -0
- data/public/vendor/bootstrap/less/bootstrap.less +63 -0
- data/public/vendor/bootstrap/less/breadcrumbs.less +23 -0
- data/public/vendor/bootstrap/less/button-groups.less +244 -0
- data/public/vendor/bootstrap/less/buttons.less +159 -0
- data/public/vendor/bootstrap/less/carousel.less +204 -0
- data/public/vendor/bootstrap/less/close.less +33 -0
- data/public/vendor/bootstrap/less/code.less +56 -0
- data/public/vendor/bootstrap/less/component-animations.less +29 -0
- data/public/vendor/bootstrap/less/dropdowns.less +176 -0
- data/public/vendor/bootstrap/less/forms.less +332 -0
- data/public/vendor/bootstrap/less/grid.less +340 -0
- data/public/vendor/bootstrap/less/input-groups.less +127 -0
- data/public/vendor/bootstrap/less/jumbotron.less +29 -0
- data/public/vendor/bootstrap/less/labels.less +54 -0
- data/public/vendor/bootstrap/less/list-group.less +88 -0
- data/public/vendor/bootstrap/less/media.less +56 -0
- data/public/vendor/bootstrap/less/mixins.less +693 -0
- data/public/vendor/bootstrap/less/modals.less +133 -0
- data/public/vendor/bootstrap/less/navbar.less +559 -0
- data/public/vendor/bootstrap/less/navs.less +228 -0
- data/public/vendor/bootstrap/less/normalize.less +396 -0
- data/public/vendor/bootstrap/less/pager.less +55 -0
- data/public/vendor/bootstrap/less/pagination.less +72 -0
- data/public/vendor/bootstrap/less/panels.less +128 -0
- data/public/vendor/bootstrap/less/popovers.less +133 -0
- data/public/vendor/bootstrap/less/print.less +100 -0
- data/public/vendor/bootstrap/less/progress-bars.less +99 -0
- data/public/vendor/bootstrap/less/responsive-utilities.less +149 -0
- data/public/vendor/bootstrap/less/scaffolding.less +111 -0
- data/public/vendor/bootstrap/less/tables.less +211 -0
- data/public/vendor/bootstrap/less/thumbnails.less +42 -0
- data/public/vendor/bootstrap/less/tooltip.less +95 -0
- data/public/vendor/bootstrap/less/type.less +238 -0
- data/public/vendor/bootstrap/less/utilities.less +42 -0
- data/public/vendor/bootstrap/less/variables.less +607 -0
- data/public/vendor/bootstrap/less/wells.less +29 -0
- data/public/vendor/bootstrap/package.json +33 -0
- data/public/vendor/bootstrap-glyphicons/CHANGELOG.md +3 -0
- data/public/vendor/bootstrap-glyphicons/CNAME +1 -0
- data/public/vendor/bootstrap-glyphicons/CONTRIBUTING.md +54 -0
- data/public/vendor/bootstrap-glyphicons/LICENSE +19 -0
- data/public/vendor/bootstrap-glyphicons/README.md +61 -0
- data/public/vendor/bootstrap-glyphicons/_config.yml +12 -0
- data/public/vendor/bootstrap-glyphicons/composer.json +9 -0
- data/public/vendor/bootstrap-glyphicons/css/bootstrap-glyphicons.css +2 -0
- data/public/vendor/bootstrap-glyphicons/css/bootstrap.css +9 -0
- data/public/vendor/bootstrap-glyphicons/css/docs.css +160 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.eot +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.otf +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.svg +175 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.ttf +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.woff +0 -0
- data/public/vendor/bootstrap-glyphicons/index.html +255 -0
- data/public/vendor/bootstrap-glyphicons/less/bootstrap-glyphicons.less +201 -0
- data/public/vendor/bootstrap-glyphicons/package.json +18 -0
- data/public/vendor/d3/LICENSE +26 -0
- data/public/vendor/d3/README.md +7 -0
- data/public/vendor/d3/bower.json +25 -0
- data/public/vendor/d3/d3.js +8810 -0
- data/public/vendor/d3/d3.min.js +5 -0
- data/public/vendor/jquery/README.md +11 -0
- data/public/vendor/jquery/bower.json +11 -0
- data/public/vendor/jquery/component.json +15 -0
- data/public/vendor/jquery/composer.json +35 -0
- data/public/vendor/jquery/jquery-migrate.js +511 -0
- data/public/vendor/jquery/jquery-migrate.min.js +3 -0
- data/public/vendor/jquery/jquery.js +8829 -0
- data/public/vendor/jquery/jquery.min.js +6 -0
- data/public/vendor/jquery/jquery.min.map +1 -0
- data/public/vendor/jquery/package.json +7 -0
- data/public/vendor/replacejs/CHANGELOG.md +3 -0
- data/public/vendor/replacejs/MIT-LICENSE.txt +20 -0
- data/public/vendor/replacejs/README.md +123 -0
- data/public/vendor/replacejs/bower.json +24 -0
- data/public/vendor/replacejs/primer.js +17 -0
- data/public/vendor/replacejs/primer.min.js +1 -0
- data/public/vendor/replacejs/replace.js +182 -0
- data/public/vendor/stupidtable.js +158 -0
- data/views/dashboard.haml +17 -0
- data/views/layout.haml +60 -0
- metadata +330 -0
@@ -0,0 +1,176 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
@@ -0,0 +1,139 @@
|
|
1
|
+
# [Bootstrap v3.0.0](http://getbootstrap.com) [![Build Status](https://secure.travis-ci.org/twbs/bootstrap.png)](http://travis-ci.org/twbs/bootstrap)
|
2
|
+
|
3
|
+
Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat).
|
4
|
+
|
5
|
+
To get started, check out [http://getbootstrap.com](http://getbootstrap.com)!
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
## Quick start
|
10
|
+
|
11
|
+
Three quick start options are available:
|
12
|
+
|
13
|
+
* [Download the latest release](https://github.com/twbs/bootstrap/zipball/3.0.0-wip).
|
14
|
+
* Clone the repo: `git clone git://github.com/twbs/bootstrap.git`.
|
15
|
+
* Install with [Bower](http://bower.io): `bower install bootstrap`.
|
16
|
+
|
17
|
+
Read the [Getting Started page](http://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
## Bugs and feature requests
|
22
|
+
|
23
|
+
Have a bug or a feature request? [Please open a new issue](https://github.com/twbs/bootstrap/issues). Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/).
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
## Documentation
|
28
|
+
|
29
|
+
Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at [http://getbootstrap.com](http://getbootstrap.com). The docs may also be run locally.
|
30
|
+
|
31
|
+
### Running documentation locally
|
32
|
+
|
33
|
+
1. If necessary, [install Jekyll](http://jekyllrb.com/docs/installation) (requires v1.x).
|
34
|
+
2. From the root `/bootstrap` directory, run `jekyll serve` in the command line.
|
35
|
+
- **Windows users:** run `chcp 65001` first to change the command prompt's character encoding ([code page](http://en.wikipedia.org/wiki/Windows_code_page)) to UTF-8 so Jekyll runs without errors.
|
36
|
+
3. Open [http://localhost:9001](http://localhost:9001) in your browser, and voilà.
|
37
|
+
|
38
|
+
Learn more about using Jekyll by reading their [documentation](http://jekyllrb.com/docs/home/).
|
39
|
+
|
40
|
+
### Documentation for previous releases
|
41
|
+
|
42
|
+
Documentation for v2.3.2 has been made available for the time being at [http://getbootstrap.com/2.3.2/](http://getbootstrap.com/2.3.2/) while folks transition to Bootstrap 3.
|
43
|
+
|
44
|
+
[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download.
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
## Compiling CSS and JavaScript
|
49
|
+
|
50
|
+
Bootstrap uses [Grunt](http://gruntjs.com/) with convenient methods for working with the framework. It's how we compile our code, run tests, and more. To use it, install the required dependencies as directed and then run some Grunt commands.
|
51
|
+
|
52
|
+
### Install Grunt
|
53
|
+
|
54
|
+
From the command line:
|
55
|
+
|
56
|
+
1. Install `grunt-cli` globally with `npm install -g grunt-cli`.
|
57
|
+
2. Install the [necessary local dependencies](package.json) via `npm install`
|
58
|
+
|
59
|
+
When completed, you'll be able to run the various Grunt commands provided from the command line.
|
60
|
+
|
61
|
+
**Unfamiliar with `npm`? Don't have node installed?** That's a-okay. npm stands for [node packaged modules](http://npmjs.org/) and is a way to manage development dependencies through node.js. [Download and install node.js](http://nodejs.org/download/) before proceeding.
|
62
|
+
|
63
|
+
### Available Grunt commands
|
64
|
+
|
65
|
+
#### Build - `grunt`
|
66
|
+
Run `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Requires [recess](https://github.com/twitter/recess) and [uglify-js](https://github.com/mishoo/UglifyJS).**
|
67
|
+
|
68
|
+
#### Only compile CSS and JavaScript - `grunt dist`
|
69
|
+
`grunt dist` creates the `/dist` directory with compiled files. **Requires [recess](https://github.com/twitter/recess) and [uglify-js](https://github.com/mishoo/UglifyJS).**
|
70
|
+
|
71
|
+
#### Tests - `grunt test`
|
72
|
+
Runs jshint and qunit tests headlessly in [phantomjs](https://github.com/ariya/phantomjs/) (used for CI). **Requires [phantomjs](https://github.com/ariya/phantomjs/).**
|
73
|
+
|
74
|
+
#### Watch - `grunt watch`
|
75
|
+
This is a convenience method for watching just Less files and automatically building them whenever you save.
|
76
|
+
|
77
|
+
### Troubleshooting dependencies
|
78
|
+
|
79
|
+
Should you encounter problems with installing dependencies or running Grunt commands, uninstall all previous dependency versions (global and local). Then, rerun `npm install`.
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
## Contributing
|
84
|
+
|
85
|
+
Please read through our guidelines for contributing to Bootstrap. Included are directions for opening issues, coding standards, and notes on development.
|
86
|
+
|
87
|
+
More over, if your pull request contains JavaScript patches or features, you must include relevant unit tests. All HTML and CSS should conform to the [Code Guide](http://github.com/mdo/code-guide), maintained by [Mark Otto](http://github.com/mdo).
|
88
|
+
|
89
|
+
Editor preferences are available in the [editor config](.editorconfig) for easy use in common text editors. Read more and download plugins at [http://editorconfig.org](http://editorconfig.org).
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
## Community
|
94
|
+
|
95
|
+
Keep track of development and community news.
|
96
|
+
|
97
|
+
* Follow [@twbootstrap on Twitter](http://twitter.com/twbootstrap).
|
98
|
+
* Read and subscribe to the [The Official Bootstrap Blog](http://blog.getbootstrap.com).
|
99
|
+
* Have a question that's not a feature request or bug report? [Ask on the mailing list.](http://groups.google.com/group/twitter-bootstrap)
|
100
|
+
* Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##twitter-bootstrap` channel.
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
## Versioning
|
106
|
+
|
107
|
+
For transparency and insight into our release cycle, and for striving to maintain backward compatibility, Bootstrap will be maintained under the Semantic Versioning guidelines as much as possible.
|
108
|
+
|
109
|
+
Releases will be numbered with the following format:
|
110
|
+
|
111
|
+
`<major>.<minor>.<patch>`
|
112
|
+
|
113
|
+
And constructed with the following guidelines:
|
114
|
+
|
115
|
+
* Breaking backward compatibility bumps the major (and resets the minor and patch)
|
116
|
+
* New additions without breaking backward compatibility bumps the minor (and resets the patch)
|
117
|
+
* Bug fixes and misc changes bumps the patch
|
118
|
+
|
119
|
+
For more information on SemVer, please visit [http://semver.org/](http://semver.org/).
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
## Authors
|
124
|
+
|
125
|
+
**Mark Otto**
|
126
|
+
|
127
|
+
+ [http://twitter.com/mdo](http://twitter.com/mdo)
|
128
|
+
+ [http://github.com/mdo](http://github.com/mdo)
|
129
|
+
|
130
|
+
**Jacob Thornton**
|
131
|
+
|
132
|
+
+ [http://twitter.com/fat](http://twitter.com/fat)
|
133
|
+
+ [http://github.com/fat](http://github.com/fat)
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
## Copyright and license
|
138
|
+
|
139
|
+
Copyright 2012 Twitter, Inc under [the Apache 2.0 license](LICENSE).
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# Dependencies
|
2
|
+
markdown: rdiscount
|
3
|
+
pygments: true
|
4
|
+
|
5
|
+
# Permalinks
|
6
|
+
permalink: pretty
|
7
|
+
|
8
|
+
# Server
|
9
|
+
destination: ./_gh_pages
|
10
|
+
exclude: [".editorconfig", ".gitignore", ".ruby-version", "bower.json", "composer.json", "CONTRIBUTING.md", "CNAME", "LICENSE", "Gruntfile.js", "package.json", "node_modules", "README.md", "less"]
|
11
|
+
port: 9001
|
12
|
+
|
13
|
+
# Custom vars
|
14
|
+
repo: https://github.com/twbs/bootstrap
|
15
|
+
download: https://github.com/twbs/bootstrap/archive/3.0.0-wip.zip
|
16
|
+
download_dist: http://getbootstrap.com/bs-v3.0.0-rc.2-dist.zip
|
17
|
+
|
18
|
+
examples: http://examples.getbootstrap.com
|
19
|
+
examples_repo: https://github.com/twbs/bootstrap-examples
|
20
|
+
|
21
|
+
glyphicons: http://glyphicons.getbootstrap.com
|
22
|
+
glyphicons_repo: https://github.com/twbs/bootstrap-glyphicons
|
23
|
+
|
24
|
+
blog: http://blog.getbootstrap.com
|
25
|
+
expo: http://expo.getbootstrap.com
|
26
|
+
|
27
|
+
cdn_css: //netdna.bootstrapcdn.com/bootstrap/3.0.0-wip/css/bootstrap.min.css
|
28
|
+
cdn_js: //netdna.bootstrapcdn.com/bootstrap/3.0.0-wip/js/bootstrap.min.js
|
@@ -0,0 +1 @@
|
|
1
|
+
<div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script>var z = document.createElement("script"); z.async = true; z.src = "http://engine.carbonads.com/z/32341/azcarbon_2_1_0_HORIZ"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<!-- Bootstrap core JavaScript
|
2
|
+
================================================== -->
|
3
|
+
<!-- Placed at the end of the document so the pages load faster -->
|
4
|
+
<script src="{{ page.base_url }}assets/js/jquery.js"></script>
|
5
|
+
<script src="{{ page.base_url }}dist/js/bootstrap.js"></script>
|
6
|
+
|
7
|
+
<script src="http://platform.twitter.com/widgets.js"></script>
|
8
|
+
<script src="{{ page.base_url }}assets/js/holder.js"></script>
|
9
|
+
|
10
|
+
<script src="{{ page.base_url }}assets/js/application.js"></script>
|
11
|
+
|
12
|
+
{% if page.slug == "customize" %}
|
13
|
+
<script src="{{ page.base_url }}assets/js/less.js"></script>
|
14
|
+
<script src="{{ page.base_url }}assets/js/jszip.js"></script>
|
15
|
+
<script src="{{ page.base_url }}assets/js/uglify.js"></script>
|
16
|
+
<script src="{{ page.base_url }}assets/js/jquery.bbq.min.js"></script>
|
17
|
+
<script src="{{ page.base_url }}assets/js/customizer.js"></script>
|
18
|
+
{% endif %}
|
19
|
+
|
20
|
+
<!-- Analytics
|
21
|
+
================================================== -->
|
22
|
+
<script>
|
23
|
+
var _gauges = _gauges || [];
|
24
|
+
(function() {
|
25
|
+
var t = document.createElement('script');
|
26
|
+
t.async = true;
|
27
|
+
t.id = 'gauges-tracker';
|
28
|
+
t.setAttribute('data-site-id', '4f0dc9fef5a1f55508000013');
|
29
|
+
t.src = '//secure.gaug.es/track.js';
|
30
|
+
var s = document.getElementsByTagName('script')[0];
|
31
|
+
s.parentNode.insertBefore(t, s);
|
32
|
+
})();
|
33
|
+
</script>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<meta charset="utf-8">
|
2
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
3
|
+
<meta name="description" content="">
|
4
|
+
<meta name="author" content="">
|
5
|
+
|
6
|
+
<title>
|
7
|
+
{% if page.title == "Bootstrap" %}
|
8
|
+
{{ page.title }}
|
9
|
+
{% else if %}
|
10
|
+
{{ page.title }} · Bootstrap
|
11
|
+
{% endif %}
|
12
|
+
</title>
|
13
|
+
|
14
|
+
<!-- Bootstrap core CSS -->
|
15
|
+
<link href="{{ page.base_url }}dist/css/bootstrap.css" rel="stylesheet">
|
16
|
+
|
17
|
+
<!-- Documentation extras -->
|
18
|
+
<link href="{{ page.base_url }}assets/css/docs.css" rel="stylesheet">
|
19
|
+
<link href="{{ page.base_url }}assets/css/pygments-manni.css" rel="stylesheet">
|
20
|
+
|
21
|
+
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
22
|
+
<!--[if lt IE 9]>
|
23
|
+
<script src="{{ page.base_url }}assets/js/html5shiv.js"></script>
|
24
|
+
<script src="{{ page.base_url }}assets/js/respond.min.js"></script>
|
25
|
+
<![endif]-->
|
26
|
+
|
27
|
+
<!-- Favicons -->
|
28
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ page.base_url }}assets/ico/apple-touch-icon-144-precomposed.png">
|
29
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ page.base_url }}assets/ico/apple-touch-icon-114-precomposed.png">
|
30
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ page.base_url }}assets/ico/apple-touch-icon-72-precomposed.png">
|
31
|
+
<link rel="apple-touch-icon-precomposed" href="{{ page.base_url }}assets/ico/apple-touch-icon-57-precomposed.png">
|
32
|
+
<link rel="shortcut icon" href="{{ page.base_url }}assets/ico/favicon.png">
|
33
|
+
|
34
|
+
<script>
|
35
|
+
var _gaq = _gaq || [];
|
36
|
+
_gaq.push(['_setAccount', 'UA-146052-10']);
|
37
|
+
_gaq.push(['_trackPageview']);
|
38
|
+
(function() {
|
39
|
+
var ga = document.createElement('script'); ga.async = true;
|
40
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
41
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
42
|
+
})();
|
43
|
+
</script>
|
@@ -0,0 +1,135 @@
|
|
1
|
+
<li>
|
2
|
+
<a href="#dropdowns">Dropdowns</a>
|
3
|
+
<ul class="nav">
|
4
|
+
<li><a href="#dropdowns-example">Example</a></li>
|
5
|
+
<li><a href="#dropdowns-alignment">Alignment options</a></li>
|
6
|
+
<li><a href="#dropdowns-headers">Headers</a></li>
|
7
|
+
<li><a href="#dropdowns-disabled">Disabled menu items</a></li>
|
8
|
+
</ul>
|
9
|
+
</li>
|
10
|
+
<li>
|
11
|
+
<a href="#btn-groups">Button groups</a>
|
12
|
+
<ul class="nav">
|
13
|
+
<li><a href="#btn-groups-single">Basic button group</a></li>
|
14
|
+
<li><a href="#btn-groups-toolbar">Button toolbar</a></li>
|
15
|
+
<li><a href="#btn-groups-sizing">Button group sizing</a></li>
|
16
|
+
<li><a href="#btn-groups-nested">Nested button groups</a></li>
|
17
|
+
<li><a href="#btn-groups-vertical">Vertical variation</a></li>
|
18
|
+
<li><a href="#btn-groups-justified">Justified link buttons</a></li>
|
19
|
+
</ul>
|
20
|
+
</li>
|
21
|
+
<li>
|
22
|
+
<a href="#btn-dropdowns">Button dropdowns</a>
|
23
|
+
<ul class="nav">
|
24
|
+
<li><a href="#btn-dropdowns-single">Single button dropdown</a></li>
|
25
|
+
<li><a href="#btn-dropdowns-split">Split button dropdown</a></li>
|
26
|
+
<li><a href="#btn-dropdowns-sizes">Button sizes</a></li>
|
27
|
+
<li><a href="#btn-dropdowns-dropup">Dropup variation</a></li>
|
28
|
+
</ul>
|
29
|
+
</li>
|
30
|
+
<li>
|
31
|
+
<a href="#input-groups">Input groups</a>
|
32
|
+
<ul class="nav">
|
33
|
+
<li><a href="#input-groups-basic">Basic input group</a></li>
|
34
|
+
<li><a href="#input-groups-sizes">Sizing options</a></li>
|
35
|
+
<li><a href="#input-groups-checkboxes-radios">Checkbox and radios addons</a></li>
|
36
|
+
<li><a href="#input-groups-buttons">Button addons</a></li>
|
37
|
+
<li><a href="#input-groups-buttons-dropdowns">Buttons with dropdowns</a></li>
|
38
|
+
<li><a href="#input-groups-buttons-segmented">Segmented buttons</a></li>
|
39
|
+
</ul>
|
40
|
+
</li>
|
41
|
+
<li>
|
42
|
+
<a href="#nav">Navs</a>
|
43
|
+
<ul class="nav">
|
44
|
+
<li><a href="#nav-tabs">Tabs nav</a></li>
|
45
|
+
<li><a href="#nav-pills">Pills nav</a></li>
|
46
|
+
<li><a href="#nav-justified">Justified nav</a></li>
|
47
|
+
<li><a href="#nav-disabled-links">Disabled links</a></li>
|
48
|
+
<li><a href="#nav-alignment">Alignment options</a></li>
|
49
|
+
<li><a href="#nav-dropdowns">Using dropdowns</a></li>
|
50
|
+
</ul>
|
51
|
+
</li>
|
52
|
+
<li>
|
53
|
+
<a href="#navbar">Navbar</a>
|
54
|
+
<ul class="nav">
|
55
|
+
<li><a href="#navbar-default">Default navbar</a></li>
|
56
|
+
<li><a href="#navbar-buttons">Buttons in navbars</a></li>
|
57
|
+
<li><a href="#navbar-text">Text in navbars</a></li>
|
58
|
+
<li><a href="#navbar-links">Links in navbars</a></li>
|
59
|
+
<li><a href="#navbar-component-alignment">Component alignment</a></li>
|
60
|
+
<li><a href="#navbar-fixed-top">Fixed top navbar</a></li>
|
61
|
+
<li><a href="#navbar-fixed-bottom">Fixed bottom navbar</a></li>
|
62
|
+
<li><a href="#navbar-static-top">Static top navbar</a></li>
|
63
|
+
<li><a href="#navbar-inverted">Inverted navbar</a></li>
|
64
|
+
</ul>
|
65
|
+
</li>
|
66
|
+
<li><a href="#breadcrumbs">Breadcrumbs</a></li>
|
67
|
+
<li>
|
68
|
+
<a href="#pagination">Pagination</a>
|
69
|
+
<ul class="nav">
|
70
|
+
<li><a href="#pagination-default">Default pagination</a></li>
|
71
|
+
<li><a href="#pagination-pager">Pager</a></li>
|
72
|
+
</ul>
|
73
|
+
</li>
|
74
|
+
<li><a href="#labels">Labels</a></li>
|
75
|
+
<li><a href="#badges">Badges</a></li>
|
76
|
+
<li>
|
77
|
+
<a href="#type-components">Typography</a>
|
78
|
+
<ul class="nav">
|
79
|
+
<li><a href="#type-components-jumbotron">Jumbotron</a></li>
|
80
|
+
<li><a href="#type-components-page-header">Page header</a></li>
|
81
|
+
</ul>
|
82
|
+
</li>
|
83
|
+
<li>
|
84
|
+
<a href="#thumbnails">Thumbnails</a>
|
85
|
+
<ul class="nav">
|
86
|
+
<li><a href="#thumbnails-default">Default thumbnails</a></li>
|
87
|
+
<li><a href="#thumbnails-custom-content">Custom content</a></li>
|
88
|
+
</ul>
|
89
|
+
</li>
|
90
|
+
<li>
|
91
|
+
<a href="#alerts">Alerts</a>
|
92
|
+
<ul class="nav">
|
93
|
+
<li><a href="#alerts-default">Default alert</a></li>
|
94
|
+
<li><a href="#alerts-alternatives">Contextual alternatives</a></li>
|
95
|
+
<li><a href="#alerts-dismissable">Dismissable alerts</a></li>
|
96
|
+
<li><a href="#alerts-links">Links in alerts</a></li>
|
97
|
+
</ul>
|
98
|
+
</li>
|
99
|
+
<li>
|
100
|
+
<a href="#progress">Progress bars</a>
|
101
|
+
<ul class="nav">
|
102
|
+
<li><a href="#progress-basic">Basic progress bar</a></li>
|
103
|
+
<li><a href="#progress-alternatives">Contextual alternatives</a></li>
|
104
|
+
<li><a href="#progress-striped">Striped</a></li>
|
105
|
+
<li><a href="#progress-animated">Animated</a></li>
|
106
|
+
<li><a href="#progress-stacked">Stacked</a></li>
|
107
|
+
</ul>
|
108
|
+
</li>
|
109
|
+
<li>
|
110
|
+
<a href="#media">Media object</a>
|
111
|
+
<ul class="nav">
|
112
|
+
<li><a href="#media-default">Default media</a></li>
|
113
|
+
<li><a href="#media-list">Media list</a></li>
|
114
|
+
</ul>
|
115
|
+
</li>
|
116
|
+
<li>
|
117
|
+
<a href="#list-group">List group</a>
|
118
|
+
<ul class="nav">
|
119
|
+
<li><a href="#list-group-basic">Basic list group</a></li>
|
120
|
+
<li><a href="#list-group-badges">Badges</a></li>
|
121
|
+
<li><a href="#list-group-linked">Linked items</a></li>
|
122
|
+
<li><a href="#list-group-custom-content">Custom content</a></li>
|
123
|
+
<!-- <li><a href="#list-group-pic">Leading picture</a></li> -->
|
124
|
+
</ul>
|
125
|
+
</li>
|
126
|
+
<li>
|
127
|
+
<a href="#panels">Panels</a>
|
128
|
+
<ul class="nav">
|
129
|
+
<li><a href="#panels-basic">Basic panel</a></li>
|
130
|
+
<li><a href="#panels-heading">Panel with heading</a></li>
|
131
|
+
<li><a href="#panels-alternatives">Contextual alternatives</a></li>
|
132
|
+
<li><a href="#panels-list-group">With list groups</a>
|
133
|
+
</ul>
|
134
|
+
</li>
|
135
|
+
<li><a href="#wells">Wells</a></li>
|
@@ -0,0 +1,77 @@
|
|
1
|
+
<li>
|
2
|
+
<a href="#overview">Overview</a>
|
3
|
+
<ul class="nav">
|
4
|
+
<li><a href="#overview-doctype">HTML5 doctype</a></li>
|
5
|
+
<li><a href="#overview-mobile">Mobile first</a></li>
|
6
|
+
<li><a href="#overview-responsive-images">Responsive images</a></li>
|
7
|
+
<li><a href="#overview-type-links">Type and links</a></li>
|
8
|
+
<li><a href="#overview-normalize">Normalize</a></li>
|
9
|
+
<li><a href="#overview-container">Container</a></li>
|
10
|
+
</ul>
|
11
|
+
</li>
|
12
|
+
<li>
|
13
|
+
<a href="#glyphicons">Glyphicons</a>
|
14
|
+
</li>
|
15
|
+
<li>
|
16
|
+
<a href="#grid">Grid system</a>
|
17
|
+
<ul class="nav">
|
18
|
+
<li><a href="#grid-media-queries">Media queries</a></li>
|
19
|
+
<li><a href="#grid-options">Available options</a></li>
|
20
|
+
<li><a href="#grid-example-basic">Ex: Stacked-to-horizonal</a></li>
|
21
|
+
<li><a href="#grid-example-mixed">Ex: Mobile-desktop</a></li>
|
22
|
+
<li><a href="#grid-example-mixed-complete">Ex: Mobile, tablet, desktop</a></li>
|
23
|
+
<li><a href="#grid-offsetting">Offset columns</a></li>
|
24
|
+
<li><a href="#grid-nesting">Nested columns</a></li>
|
25
|
+
<li><a href="#grid-column-ordering">Column ordering</a></li>
|
26
|
+
<li><a href="#grid-less">LESS mixins and variables</a></li>
|
27
|
+
</ul>
|
28
|
+
</li>
|
29
|
+
<li>
|
30
|
+
<a href="#type">Typography</a>
|
31
|
+
<ul class="nav">
|
32
|
+
<li><a href="#type-headings">Headings</a></li>
|
33
|
+
<li><a href="#type-body-copy">Body copy</a></li>
|
34
|
+
<li><a href="#type-emphasis">Emphasis</a></li>
|
35
|
+
<li><a href="#type-abbreviations">Abbreviations</a></li>
|
36
|
+
<li><a href="#type-addresses">Addresses</a></li>
|
37
|
+
<li><a href="#type-blockquotes">Blockquotes</a></li>
|
38
|
+
<li><a href="#type-lists">Lists</a></li>
|
39
|
+
</ul>
|
40
|
+
</li>
|
41
|
+
<li><a href="#code">Code</a></li>
|
42
|
+
<li>
|
43
|
+
<a href="#tables">Tables</a>
|
44
|
+
<ul class="nav">
|
45
|
+
<li><a href="#tables-example">Basic example</a></li>
|
46
|
+
<li><a href="#tables-striped">Zebra striping</a></li>
|
47
|
+
<li><a href="#tables-bordered">Bordered tables</a></li>
|
48
|
+
<li><a href="#tables-hover-rows">Hover rows</a></li>
|
49
|
+
<li><a href="#tables-condensed">Condensed tables</a></li>
|
50
|
+
<li><a href="#tables-row-classes">Contextual row classes</a></li>
|
51
|
+
</ul>
|
52
|
+
</li>
|
53
|
+
<li>
|
54
|
+
<a href="#forms">Forms</a>
|
55
|
+
<ul class="nav">
|
56
|
+
<li><a href="#forms-example">Basic example</a></li>
|
57
|
+
<li><a href="#forms-inline">Inline variation</a></li>
|
58
|
+
<li><a href="#forms-horizontal">Horizontal variation</a></li>
|
59
|
+
<li><a href="#forms-controls">Supported controls</a></li>
|
60
|
+
<li><a href="#forms-controls-static">Static form control</a></li>
|
61
|
+
<li><a href="#forms-control-states">Control states</a></li>
|
62
|
+
<li><a href="#forms-control-sizes">Control sizing</a></li>
|
63
|
+
<li><a href="#forms-help-text">Help text</a></li>
|
64
|
+
</ul>
|
65
|
+
</li>
|
66
|
+
<li>
|
67
|
+
<a href="#buttons">Buttons</a>
|
68
|
+
<ul class="nav">
|
69
|
+
<li><a href="#buttons-options">Button options</a></li>
|
70
|
+
<li><a href="#buttons-sizes">Sizes</a></li>
|
71
|
+
<li><a href="#buttons-disabled">Disabled</a></li>
|
72
|
+
<li><a href="#buttons-tags">Button tags</a></li>
|
73
|
+
</ul>
|
74
|
+
</li>
|
75
|
+
<li><a href="#images">Images</a></li>
|
76
|
+
<li><a href="#helper-classes">Helper classes</a></li>
|
77
|
+
<li><a href="#responsive-utilities">Responsive utilities</a></li>
|