locomotivecms_wagon 2.0.0.rc2 → 2.0.0.rc3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/generators/{bootstrap3 → bootstrap}/Gemfile.tt +0 -0
  4. data/generators/{bootstrap3 → bootstrap}/app/content_types/.empty_directory +0 -0
  5. data/generators/bootstrap/app/views/pages/404.liquid +18 -0
  6. data/generators/bootstrap/app/views/pages/404.liquid.haml +14 -0
  7. data/generators/bootstrap/app/views/pages/index.liquid +31 -0
  8. data/generators/bootstrap/app/views/pages/index.liquid.haml +25 -0
  9. data/generators/bootstrap/app/views/pages/layouts/default.liquid +31 -0
  10. data/generators/bootstrap/app/views/pages/layouts/default.liquid.haml +30 -0
  11. data/generators/bootstrap/app/views/pages/layouts/simple.liquid +36 -0
  12. data/generators/bootstrap/app/views/pages/layouts/simple.liquid.haml +29 -0
  13. data/generators/bootstrap/app/views/snippets/footer.liquid +5 -0
  14. data/generators/bootstrap/app/views/snippets/footer.liquid.haml +3 -0
  15. data/generators/bootstrap/app/views/snippets/nav.liquid +26 -0
  16. data/generators/bootstrap/app/views/snippets/nav.liquid.haml +19 -0
  17. data/generators/{bootstrap3 → bootstrap}/config/deploy.yml +0 -0
  18. data/generators/bootstrap/config/site.yml.tt +1 -6
  19. data/generators/{bootstrap3 → bootstrap}/config/translations.yml +0 -0
  20. data/generators/{bootstrap3 → bootstrap}/data/.empty_directory +0 -0
  21. data/generators/{bootstrap3 → bootstrap}/icon.png +0 -0
  22. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  23. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
  24. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  25. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  26. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  27. data/generators/{bootstrap3/public/samples → bootstrap/public/images}/favicon.png +0 -0
  28. data/generators/bootstrap/public/javascripts/application.js +2 -0
  29. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/affix.js +60 -35
  30. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/alert.js +15 -9
  31. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/button.js +33 -20
  32. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/carousel.js +79 -47
  33. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/collapse.js +84 -43
  34. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/dropdown.js +64 -46
  35. data/generators/bootstrap/public/javascripts/bootstrap/modal.js +337 -0
  36. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/popover.js +12 -14
  37. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/scrollspy.js +57 -38
  38. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/tab.js +54 -24
  39. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/tooltip.js +202 -87
  40. data/generators/{bootstrap3 → bootstrap}/public/javascripts/bootstrap/transition.js +19 -8
  41. data/generators/bootstrap/public/javascripts/bootstrap.min.js +7 -0
  42. data/generators/bootstrap/public/javascripts/jquery.min.js +5 -0
  43. data/generators/bootstrap/public/stylesheets/application.css +7 -0
  44. data/generators/bootstrap/public/stylesheets/application.scss +7 -0
  45. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_alerts.scss +9 -3
  46. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_badges.scss +26 -13
  47. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_breadcrumbs.scss +3 -1
  48. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_button-groups.scss +32 -14
  49. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_buttons.scss +22 -13
  50. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_carousel.scss +43 -6
  51. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_close.scss +1 -0
  52. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_code.scss +7 -1
  53. data/generators/bootstrap/public/stylesheets/bootstrap/_component-animations.scss +37 -0
  54. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_dropdowns.scss +12 -9
  55. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_forms.scss +240 -65
  56. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_glyphicons.scss +83 -9
  57. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_grid.scss +4 -4
  58. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_input-groups.scss +7 -2
  59. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_jumbotron.scss +12 -4
  60. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_labels.scss +11 -9
  61. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_list-group.scss +32 -12
  62. data/generators/bootstrap/public/stylesheets/bootstrap/_media.scss +66 -0
  63. data/generators/bootstrap/public/stylesheets/bootstrap/_mixins.scss +40 -0
  64. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_modals.scss +18 -7
  65. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_navbar.scss +75 -33
  66. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_navs.scss +4 -4
  67. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_normalize.scss +29 -28
  68. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_pager.scss +2 -3
  69. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_pagination.scss +4 -3
  70. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_panels.scss +40 -10
  71. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_popovers.scss +6 -8
  72. data/generators/bootstrap/public/stylesheets/bootstrap/_print.scss +101 -0
  73. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_progress-bars.scss +13 -6
  74. data/generators/bootstrap/public/stylesheets/bootstrap/_responsive-embed.scss +35 -0
  75. data/generators/bootstrap/public/stylesheets/bootstrap/_responsive-utilities.scss +179 -0
  76. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_scaffolding.scss +31 -4
  77. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_tables.scss +17 -16
  78. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_theme.scss +57 -13
  79. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_thumbnails.scss +2 -2
  80. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_tooltip.scss +13 -7
  81. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_type.scss +38 -24
  82. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_utilities.scss +3 -4
  83. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_variables.scss +86 -47
  84. data/generators/{bootstrap3 → bootstrap}/public/stylesheets/bootstrap/_wells.scss +0 -0
  85. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
  86. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
  87. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  88. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_buttons.scss +68 -0
  89. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  90. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  91. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_forms.scss +88 -0
  92. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
  93. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
  94. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid.scss +122 -0
  95. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  96. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_image.scss +33 -0
  97. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  98. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
  99. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  100. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  101. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
  102. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
  103. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_panels.scss +24 -0
  104. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
  105. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
  106. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
  107. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  108. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
  109. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_size.scss +10 -0
  110. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  111. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  112. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
  113. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  114. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  115. data/generators/bootstrap/public/stylesheets/bootstrap.css +5 -0
  116. data/generators/{bootstrap3/public/stylesheets/bootstrap.css.scss → bootstrap/public/stylesheets/bootstrap.scss} +16 -2
  117. data/lib/locomotive/wagon/cli.rb +3 -3
  118. data/lib/locomotive/wagon/commands/authenticate_command.rb +2 -1
  119. data/lib/locomotive/wagon/commands/concerns/spinner_concern.rb +29 -0
  120. data/lib/locomotive/wagon/commands/pull_command.rb +18 -3
  121. data/lib/locomotive/wagon/commands/push_command.rb +28 -4
  122. data/lib/locomotive/wagon/commands/sync_command.rb +21 -6
  123. data/lib/locomotive/wagon/commands/sync_sub_commands/sync_pages_command.rb +27 -3
  124. data/lib/locomotive/wagon/generators/site/{bootstrap3.rb → bootstrap.rb} +12 -6
  125. data/lib/locomotive/wagon/generators/site.rb +1 -1
  126. data/lib/locomotive/wagon/tools/listen.rb +1 -1
  127. data/lib/locomotive/wagon/version.rb +1 -1
  128. data/lib/locomotive/wagon.rb +2 -2
  129. data/locomotivecms_wagon.gemspec +3 -2
  130. data/spec/unit/decorators/theme_asset_decorator_spec.rb +10 -0
  131. metadata +124 -90
  132. data/generators/bootstrap3/app/views/pages/404.liquid +0 -13
  133. data/generators/bootstrap3/app/views/pages/404.liquid.haml +0 -10
  134. data/generators/bootstrap3/app/views/pages/index.liquid +0 -738
  135. data/generators/bootstrap3/app/views/pages/index.liquid.haml +0 -1018
  136. data/generators/bootstrap3/app/views/snippets/footer.liquid +0 -3
  137. data/generators/bootstrap3/app/views/snippets/footer.liquid.haml +0 -2
  138. data/generators/bootstrap3/config/site.yml.tt +0 -28
  139. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.eot +0 -0
  140. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.svg +0 -229
  141. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.ttf +0 -0
  142. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.woff +0 -0
  143. data/generators/bootstrap3/public/images/.empty_directory +0 -1
  144. data/generators/bootstrap3/public/javascripts/bootstrap/modal.js +0 -243
  145. data/generators/bootstrap3/public/javascripts/bootstrap.min.js +0 -12
  146. data/generators/bootstrap3/public/samples/apple-touch-icon-114x114-precomposed.png +0 -0
  147. data/generators/bootstrap3/public/samples/apple-touch-icon-144x144-precomposed.png +0 -0
  148. data/generators/bootstrap3/public/samples/apple-touch-icon-72x72-precomposed.png +0 -0
  149. data/generators/bootstrap3/public/samples/apple-touch-icon-precomposed.png +0 -0
  150. data/generators/bootstrap3/public/stylesheets/application.css +0 -1
  151. data/generators/bootstrap3/public/stylesheets/application.css.scss +0 -8
  152. data/generators/bootstrap3/public/stylesheets/bootstrap/_component-animations.scss +0 -29
  153. data/generators/bootstrap3/public/stylesheets/bootstrap/_media.scss +0 -56
  154. data/generators/bootstrap3/public/stylesheets/bootstrap/_mixins.scss +0 -947
  155. data/generators/bootstrap3/public/stylesheets/bootstrap/_print.scss +0 -101
  156. data/generators/bootstrap3/public/stylesheets/bootstrap/_responsive-utilities.scss +0 -74
  157. data/generators/bootstrap3/public/stylesheets/bootstrap/bootstrap.css.scss +0 -49
  158. data/generators/bootstrap3/public/stylesheets/bootstrap.css +0 -5784
  159. data/lib/locomotive/wagon/generators/site/bootstrap2.rb +0 -34
@@ -1,1018 +0,0 @@
1
- ---
2
- title: Home page
3
- published: true
4
- ---
5
- !!!
6
- %html{lang: "en"}
7
- %head
8
- %meta{content: "text/html; charset=UTF-8", "http-equiv" => "content-type"}/
9
- %meta{charset: "utf-8"}/
10
- %title {{ site.name }}
11
- %meta{content: "width=device-width, initial-scale=1, maximum-scale=1", name: "viewport"}/
12
-
13
- {{ 'application.css' | stylesheet_tag }}
14
-
15
- /[if lt IE 9]
16
- <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
17
- %link{rel: "shortcut icon", href: "/samples/favicon.png"}/
18
- %link{rel: "apple-touch-icon-precomposed", sizes: "144x144", href: "/samples/apple-touch-icon-144x144-precomposed.png"}/
19
- %link{rel: "apple-touch-icon-precomposed", sizes: "114x114", href: "/samples/apple-touch-icon-114x114-precomposed.png"}/
20
- %link{rel: "apple-touch-icon-precomposed", sizes: "72x72", href: "/samples/apple-touch-icon-72x72-precomposed.png"}/
21
- %link{rel: "apple-touch-icon-precomposed", href: "/samples/apple-touch-icon-precomposed.png"}/
22
-
23
- {% inline_editor %}
24
-
25
- %body
26
- .container
27
- %h1 {{ page.title }}
28
- %p.lead A Full Featured Example
29
- /
30
- Typography
31
- \==================================================
32
- %section#typography
33
- .page-header
34
- / Headings & Paragraph Copy
35
- .row
36
- .col-lg-6
37
- .well
38
- %h1 h1. Bootstrap 3
39
- %h2 h2. Heading 2
40
- %h3 h3. Heading 3
41
- %h4 h4. Heading 4
42
- %h5 h5. Heading 5
43
- %h6 h6. Heading 6
44
- .col-lg-6
45
- %h3 Bootstrap Framework
46
- %p In simple terms, a responsive web design figures out what resolution of device it's being served on. Flexible grids then size correctly to fit the screen.
47
- %p The new Bootstrap 3 promises to be a smaller build. The separate Bootstrap base and responsive.css files have now been merged into one. There is no more fixed grid, only fluid.
48
- %hr/
49
- %blockquote.pull-right
50
- %p Have you ever had a project where you thought it would be so much better to just throw everything out and start over? I believe that’s what’s happening with BS3.
51
- %small
52
- %cite{title: "Source Title"} Quasipickle
53
- /
54
- Bootstrap 3 Navbar
55
- \==================================================
56
- %section#navbar
57
- .page-header
58
- %h1 Bootstrap 3 Navbar
59
- .container
60
- %nav.navbar{role: "navigation"}
61
- / Brand and toggle get grouped for better mobile display
62
- .navbar-header
63
- %button.navbar-toggle{"data-target" => ".navbar-ex1-collapse", "data-toggle" => "collapse", type: "button"}
64
- %span.sr-only Toggle navigation
65
- %span.icon-bar
66
- %span.icon-bar
67
- %span.icon-bar
68
- %a.navbar-brand{href: "#"} Title
69
- / Collect the nav links, forms, and other content for toggling
70
- .collapse.navbar-collapse.navbar-ex1-collapse
71
- %ul.nav.navbar-nav
72
- %li.active
73
- %a{href: "#"} Home
74
- %li
75
- %a{href: "#"} Link
76
- %li
77
- %a{href: "#"} Link
78
- %li.dropdown
79
- %a.dropdown-toggle{"data-toggle" => "dropdown", href: "#"}
80
- Dropdown
81
- %b.caret
82
- %ul.dropdown-menu
83
- %li
84
- %a{href: "#"} Action
85
- %li
86
- %a{href: "#"} One more separated link
87
- %ul.nav.navbar-nav.navbar-right
88
- %li
89
- %a{href: "#"} Link
90
- / /.navbar-collapse
91
- .container
92
- %nav.navbar.navbar-inverse{role: "navigation"}
93
- / Brand and toggle get grouped for better mobile display
94
- .navbar-header
95
- %button.navbar-toggle{"data-target" => ".navbar-ex1-collapse", "data-toggle" => "collapse", type: "button"}
96
- %span.sr-only Toggle navigation
97
- %span.icon-bar
98
- %span.icon-bar
99
- %span.icon-bar
100
- %a.navbar-brand{href: "#"} Title
101
- / Collect the nav links, forms, and other content for toggling
102
- .collapse.navbar-collapse.navbar-ex1-collapse
103
- %ul.nav.navbar-nav
104
- %li.active
105
- %a{href: "#"} Home
106
- %li
107
- %a{href: "#"} Link
108
- %li
109
- %a{href: "#"} Link
110
- %li.dropdown
111
- %a.dropdown-toggle{"data-toggle" => "dropdown", href: "#"}
112
- Dropdown
113
- %b.caret
114
- %ul.dropdown-menu
115
- %li
116
- %a{href: "#"} Action
117
- %li
118
- %a{href: "#"} One more separated link
119
- %ul.nav.navbar-nav.navbar-right
120
- %li
121
- %a{href: "#"} Link
122
- / /.navbar-collapse
123
- /
124
- Bootstrap 3 Scaffolding
125
- \==================================================
126
- %section
127
- .page-header
128
- %h1 Grid
129
- %p.lead Bootstrap 3 scaffolding has changed for improved display on mobile devices
130
- .container
131
- .row
132
- .col-lg-12
133
- .well
134
- %p col-lg-12
135
- .row
136
- .col-lg-4
137
- .well
138
- %p col-lg-4
139
- .col-lg-4
140
- .well
141
- %p col-lg-4
142
- .col-lg-4
143
- .well
144
- %p col-lg-4
145
- .row
146
- .col-lg-6.col-sm-6
147
- .well
148
- %p col-lg-6
149
- .col-lg-6.col-sm-6
150
- .well
151
- %p col-lg-6
152
- .row
153
- .col-lg-9.col-sm-6
154
- .well col-lg-9 / col-sm-6
155
- .col-lg-3.col-sm-6
156
- .well col-lg-3 / col-sm-6
157
- /
158
- Bootstrap 3 Buttons
159
- \==================================================
160
- %section#buttons
161
- .page-header
162
- %h1 Bootstrap 3 Buttons
163
- %p.lead With no gradients and borders, Bootstrap 3.0 buttons now have a flatter look
164
- %h2 Button Sizes (4)
165
- %ul.the-buttons.clearfix
166
- %li
167
- %a.btn.btn-xs.btn-primary{href: "#"} btn-xs
168
- %li
169
- %a.btn.btn-sm.btn-primary{href: "#"} btn-sm
170
- %li
171
- %a.btn.btn-primary{href: "#"} btn
172
- %li
173
- %a.btn.btn-lg.btn-primary{href: "#"} btn-lg
174
- %h2 Button Classes
175
- %ul.the-buttons.clearfix
176
- %li
177
- %a.btn.btn-default{href: "#"} Default
178
- %li
179
- %a.btn.btn-primary{href: "#"} Primary
180
- %li
181
- %a.btn.btn-success{href: "#"} Success
182
- %li
183
- %a.btn.btn-info{href: "#"} Info
184
- %li
185
- %a.btn.btn-warning{href: "#"} Warning
186
- %li
187
- %a.btn.btn-danger{href: "#"} Danger
188
- %li
189
- %a.btn.btn-primary.disabled{href: "#"} Disabled
190
- %li
191
- %a.btn.btn-link{href: "#"} Link
192
- %li
193
- / Single button
194
- .btn-group
195
- %button.btn.btn-default.dropdown-toggle{"data-toggle" => "dropdown", type: "button"}
196
- Dropdown
197
- %span.caret
198
- %ul.dropdown-menu
199
- %li
200
- %a{href: "#"} Action
201
- %li
202
- %a{href: "#"} Another action
203
- %li
204
- %a{href: "#"} Something else here
205
- %li.divider
206
- %li
207
- %a{href: "#"} Separated link
208
- %li
209
- %a.btn.btn-info{href: "#"}
210
- %i.glyphicon.glyphicon-map-marker
211
- Icon
212
- /
213
- Icons
214
- \==================================================
215
- %section#icons
216
- .page-header
217
- %h2 Bootstrap 3 Icons
218
- %p.lead The 2.x icons are now replaced by glyphicons in BS3.
219
- .row
220
- %ul.the-icons.clearfix
221
- %li
222
- %i.glyphicon.glyphicon-glass
223
- glyphicon-glass
224
- %li
225
- %i.glyphicon.glyphicon-music
226
- glyphicon-music
227
- %li
228
- %i.glyphicon.glyphicon-search
229
- glyphicon-search
230
- %li
231
- %i.glyphicon.glyphicon-envelope
232
- glyphicon-envelope
233
- %li
234
- %i.glyphicon.glyphicon-heart
235
- glyphicon-heart
236
- %li
237
- %i.glyphicon.glyphicon-star
238
- glyphicon-star
239
- %li
240
- %i.glyphicon.glyphicon-star-empty
241
- glyphicon-star-empty
242
- %li
243
- %i.glyphicon.glyphicon-user
244
- glyphicon-user
245
- %li
246
- %i.glyphicon.glyphicon-film
247
- glyphicon-film
248
- %li
249
- %i.glyphicon.glyphicon-th-large
250
- glyphicon-th-large
251
- %li
252
- %i.glyphicon.glyphicon-th
253
- glyphicon-th
254
- %li
255
- %i.glyphicon.glyphicon-th-list
256
- glyphicon-th-list
257
- %li
258
- %i.glyphicon.glyphicon-ok
259
- glyphicon-ok
260
- %li
261
- %i.glyphicon.glyphicon-remove
262
- glyphicon-remove
263
- %li
264
- %i.glyphicon.glyphicon-zoom-in
265
- glyphicon-zoom-in
266
- %li
267
- %i.glyphicon.glyphicon-zoom-out
268
- glyphicon-zoom-out
269
- %li
270
- %i.glyphicon.glyphicon-off
271
- glyphicon-off
272
- %li
273
- %i.glyphicon.glyphicon-signal
274
- glyphicon-signal
275
- %li
276
- %i.glyphicon.glyphicon-cog
277
- glyphicon-cog
278
- %li
279
- %i.glyphicon.glyphicon-trash
280
- glyphicon-trash
281
- %li
282
- %i.glyphicon.glyphicon-home
283
- glyphicon-home
284
- %li
285
- %i.glyphicon.glyphicon-file
286
- glyphicon-file
287
- %li
288
- %i.glyphicon.glyphicon-time
289
- glyphicon-time
290
- %li
291
- %i.glyphicon.glyphicon-road
292
- glyphicon-road
293
- %li
294
- %i.glyphicon.glyphicon-download-alt
295
- glyphicon-download-alt
296
- %li
297
- %i.glyphicon.glyphicon-download
298
- glyphicon-download
299
- %li
300
- %i.glyphicon.glyphicon-upload
301
- glyphicon-upload
302
- %li
303
- %i.glyphicon.glyphicon-inbox
304
- glyphicon-inbox
305
- %li
306
- %i.glyphicon.glyphicon-play-circle
307
- glyphicon-play-circle
308
- %li
309
- %i.glyphicon.glyphicon-repeat
310
- glyphicon-repeat
311
- %li
312
- %i.glyphicon.glyphicon-refresh
313
- glyphicon-refresh
314
- %li
315
- %i.glyphicon.glyphicon-list-alt
316
- glyphicon-list-alt
317
- %li
318
- %i.glyphicon.glyphicon-lock
319
- glyphicon-lock
320
- %li
321
- %i.glyphicon.glyphicon-flag
322
- glyphicon-flag
323
- %li
324
- %i.glyphicon.glyphicon-headphones
325
- glyphicon-headphones
326
- %li
327
- %i.glyphicon.glyphicon-volume-off
328
- glyphicon-volume-off
329
- %li
330
- %i.glyphicon.glyphicon-volume-down
331
- glyphicon-volume-down
332
- %li
333
- %i.glyphicon.glyphicon-volume-up
334
- glyphicon-volume-up
335
- %li
336
- %i.glyphicon.glyphicon-qrcode
337
- glyphicon-qrcode
338
- %li
339
- %i.glyphicon.glyphicon-barcode
340
- glyphicon-barcode
341
- %li
342
- %i.glyphicon.glyphicon-tag
343
- glyphicon-tag
344
- %li
345
- %i.glyphicon.glyphicon-tags
346
- glyphicon-tags
347
- %li
348
- %i.glyphicon.glyphicon-book
349
- glyphicon-book
350
- %li
351
- %i.glyphicon.glyphicon-bookmark
352
- glyphicon-bookmark
353
- %li
354
- %i.glyphicon.glyphicon-print
355
- glyphicon-print
356
- %li
357
- %i.glyphicon.glyphicon-camera
358
- glyphicon-camera
359
- %li
360
- %i.glyphicon.glyphicon-font
361
- glyphicon-font
362
- %li
363
- %i.glyphicon.glyphicon-bold
364
- glyphicon-bold
365
- %li
366
- %i.glyphicon.glyphicon-italic
367
- glyphicon-italic
368
- %li
369
- %i.glyphicon.glyphicon-text-height
370
- glyphicon-text-height
371
- %li
372
- %i.glyphicon.glyphicon-text-width
373
- glyphicon-text-width
374
- %li
375
- %i.glyphicon.glyphicon-align-left
376
- glyphicon-align-left
377
- %li
378
- %i.glyphicon.glyphicon-align-center
379
- glyphicon-align-center
380
- %li
381
- %i.glyphicon.glyphicon-align-right
382
- glyphicon-align-right
383
- %li
384
- %i.glyphicon.glyphicon-align-justify
385
- glyphicon-align-justify
386
- %li
387
- %i.glyphicon.glyphicon-list
388
- glyphicon-list
389
- %li
390
- %i.glyphicon.glyphicon-indent-left
391
- glyphicon-indent-left
392
- %li
393
- %i.glyphicon.glyphicon-indent-right
394
- glyphicon-indent-right
395
- %li
396
- %i.glyphicon.glyphicon-facetime-video
397
- glyphicon-facetime-video
398
- %li
399
- %i.glyphicon.glyphicon-picture
400
- glyphicon-picture
401
- %li
402
- %i.glyphicon.glyphicon-pencil
403
- glyphicon-pencil
404
- %li
405
- %i.glyphicon.glyphicon-map-marker
406
- glyphicon-map-marker
407
- %li
408
- %i.glyphicon.glyphicon-adjust
409
- glyphicon-adjust
410
- %li
411
- %i.glyphicon.glyphicon-tint
412
- glyphicon-tint
413
- %li
414
- %i.glyphicon.glyphicon-edit
415
- glyphicon-edit
416
- %li
417
- %i.glyphicon.glyphicon-share
418
- glyphicon-share
419
- %li
420
- %i.glyphicon.glyphicon-check
421
- glyphicon-check
422
- %li
423
- %i.glyphicon.glyphicon-move
424
- glyphicon-move
425
- %li
426
- %i.glyphicon.glyphicon-step-backward
427
- glyphicon-step-backward
428
- %li
429
- %i.glyphicon.glyphicon-fast-backward
430
- glyphicon-fast-backward
431
- %li
432
- %i.glyphicon.glyphicon-backward
433
- glyphicon-backward
434
- %li
435
- %i.glyphicon.glyphicon-play
436
- glyphicon-play
437
- %li
438
- %i.glyphicon.glyphicon-pause
439
- glyphicon-pause
440
- %li
441
- %i.glyphicon.glyphicon-stop
442
- glyphicon-stop
443
- %li
444
- %i.glyphicon.glyphicon-forward
445
- glyphicon-forward
446
- %li
447
- %i.glyphicon.glyphicon-fast-forward
448
- glyphicon-fast-forward
449
- %li
450
- %i.glyphicon.glyphicon-step-forward
451
- glyphicon-step-forward
452
- %li
453
- %i.glyphicon.glyphicon-eject
454
- glyphicon-eject
455
- %li
456
- %i.glyphicon.glyphicon-chevron-left
457
- glyphicon-chevron-left
458
- %li
459
- %i.glyphicon.glyphicon-chevron-right
460
- glyphicon-chevron-right
461
- %li
462
- %i.glyphicon.glyphicon-plus-sign
463
- glyphicon-plus-sign
464
- %li
465
- %i.glyphicon.glyphicon-minus-sign
466
- glyphicon-minus-sign
467
- %li
468
- %i.glyphicon.glyphicon-remove-sign
469
- glyphicon-remove-sign
470
- %li
471
- %i.glyphicon.glyphicon-ok-sign
472
- glyphicon-ok-sign
473
- %li
474
- %i.glyphicon.glyphicon-question-sign
475
- glyphicon-question-sign
476
- %li
477
- %i.glyphicon.glyphicon-info-sign
478
- glyphicon-info-sign
479
- %li
480
- %i.glyphicon.glyphicon-screenshot
481
- glyphicon-screenshot
482
- %li
483
- %i.glyphicon.glyphicon-remove-circle
484
- glyphicon-remove-circle
485
- %li
486
- %i.glyphicon.glyphicon-ok-circle
487
- glyphicon-ok-circle
488
- %li
489
- %i.glyphicon.glyphicon-ban-circle
490
- glyphicon-ban-circle
491
- %li
492
- %i.glyphicon.glyphicon-arrow-left
493
- glyphicon-arrow-left
494
- %li
495
- %i.glyphicon.glyphicon-arrow-right
496
- glyphicon-arrow-right
497
- %li
498
- %i.glyphicon.glyphicon-arrow-up
499
- glyphicon-arrow-up
500
- %li
501
- %i.glyphicon.glyphicon-arrow-down
502
- glyphicon-arrow-down
503
- %li
504
- %i.glyphicon.glyphicon-share-alt
505
- glyphicon-share-alt
506
- %li
507
- %i.glyphicon.glyphicon-resize-full
508
- glyphicon-resize-full
509
- %li
510
- %i.glyphicon.glyphicon-resize-small
511
- glyphicon-resize-small
512
- %li
513
- %i.glyphicon.glyphicon-plus
514
- glyphicon-plus
515
- %li
516
- %i.glyphicon.glyphicon-minus
517
- glyphicon-minus
518
- %li
519
- %i.glyphicon.glyphicon-asterisk
520
- glyphicon-asterisk
521
- %li
522
- %i.glyphicon.glyphicon-exclamation-sign
523
- glyphicon-exclamation-sign
524
- %li
525
- %i.glyphicon.glyphicon-gift
526
- glyphicon-gift
527
- %li
528
- %i.glyphicon.glyphicon-leaf
529
- glyphicon-leaf
530
- %li
531
- %i.glyphicon.glyphicon-fire
532
- glyphicon-fire
533
- %li
534
- %i.glyphicon.glyphicon-eye-open
535
- glyphicon-eye-open
536
- %li
537
- %i.glyphicon.glyphicon-eye-close
538
- glyphicon-eye-close
539
- %li
540
- %i.glyphicon.glyphicon-warning-sign
541
- glyphicon-warning-sign
542
- %li
543
- %i.glyphicon.glyphicon-plane
544
- glyphicon-plane
545
- %li
546
- %i.glyphicon.glyphicon-calendar
547
- glyphicon-calendar
548
- %li
549
- %i.glyphicon.glyphicon-random
550
- glyphicon-random
551
- %li
552
- %i.glyphicon.glyphicon-comment
553
- glyphicon-comment
554
- %li
555
- %i.glyphicon.glyphicon-magnet
556
- glyphicon-magnet
557
- %li
558
- %i.glyphicon.glyphicon-chevron-up
559
- glyphicon-chevron-up
560
- %li
561
- %i.glyphicon.glyphicon-chevron-down
562
- glyphicon-chevron-down
563
- %li
564
- %i.glyphicon.glyphicon-retweet
565
- glyphicon-retweet
566
- %li
567
- %i.glyphicon.glyphicon-shopping-cart
568
- glyphicon-shopping-cart
569
- %li
570
- %i.glyphicon.glyphicon-folder-close
571
- glyphicon-folder-close
572
- %li
573
- %i.glyphicon.glyphicon-folder-open
574
- glyphicon-folder-open
575
- %li
576
- %i.glyphicon.glyphicon-resize-vertical
577
- glyphicon-resize-vertical
578
- %li
579
- %i.glyphicon.glyphicon-resize-horizontal
580
- glyphicon-resize-horizontal
581
- %li
582
- %i.glyphicon.glyphicon-hdd
583
- glyphicon-hdd
584
- %li
585
- %i.glyphicon.glyphicon-bullhorn
586
- glyphicon-bullhorn
587
- %li
588
- %i.glyphicon.glyphicon-bell
589
- glyphicon-bell
590
- %li
591
- %i.glyphicon.glyphicon-certificate
592
- glyphicon-certificate
593
- %li
594
- %i.glyphicon.glyphicon-thumbs-up
595
- glyphicon-thumbs-up
596
- %li
597
- %i.glyphicon.glyphicon-thumbs-down
598
- glyphicon-thumbs-down
599
- %li
600
- %i.glyphicon.glyphicon-hand-right
601
- glyphicon-hand-right
602
- %li
603
- %i.glyphicon.glyphicon-hand-left
604
- glyphicon-hand-left
605
- %li
606
- %i.glyphicon.glyphicon-hand-up
607
- glyphicon-hand-up
608
- %li
609
- %i.glyphicon.glyphicon-hand-down
610
- glyphicon-hand-down
611
- %li
612
- %i.glyphicon.glyphicon-circle-arrow-right
613
- glyphicon-circle-arrow-right
614
- %li
615
- %i.glyphicon.glyphicon-circle-arrow-left
616
- glyphicon-circle-arrow-left
617
- %li
618
- %i.glyphicon.glyphicon-circle-arrow-up
619
- glyphicon-circle-arrow-up
620
- %li
621
- %i.glyphicon.glyphicon-circle-arrow-down
622
- glyphicon-circle-arrow-down
623
- %li
624
- %i.glyphicon.glyphicon-globe
625
- glyphicon-globe
626
- %li
627
- %i.glyphicon.glyphicon-wrench
628
- glyphicon-wrench
629
- %li
630
- %i.glyphicon.glyphicon-tasks
631
- glyphicon-tasks
632
- %li
633
- %i.glyphicon.glyphicon-filter
634
- glyphicon-filter
635
- %li
636
- %i.glyphicon.glyphicon-briefcase
637
- glyphicon-briefcase
638
- %li
639
- %i.glyphicon.glyphicon-fullscreen
640
- glyphicon-fullscreen
641
- %li
642
- %i.glyphicon.glyphicon-dashboard
643
- glyphicon-dashboard
644
- %li
645
- %i.glyphicon.glyphicon-paperclip
646
- glyphicon-paperclip
647
- %li
648
- %i.glyphicon.glyphicon-heart-empty
649
- glyphicon-heart-empty
650
- %li
651
- %i.glyphicon.glyphicon-link
652
- glyphicon-link
653
- %li
654
- %i.glyphicon.glyphicon-phone
655
- glyphicon-phone
656
- %li
657
- %i.glyphicon.glyphicon-pushpin
658
- glyphicon-pushpin
659
- %li
660
- %i.glyphicon.glyphicon-euro
661
- glyphicon-euro
662
- %li
663
- %i.glyphicon.glyphicon-usd
664
- glyphicon-usd
665
- %li
666
- %i.glyphicon.glyphicon-gbp
667
- glyphicon-gbp
668
- %li
669
- %i.glyphicon.glyphicon-sort
670
- glyphicon-sort
671
- %li
672
- %i.glyphicon.glyphicon-sort-by-alphabet
673
- glyphicon-sort-by-alphabet
674
- %li
675
- %i.glyphicon.glyphicon-sort-by-alphabet-alt
676
- glyphicon-sort-by-alphabet-alt
677
- %li
678
- %i.glyphicon.glyphicon-sort-by-order
679
- glyphicon-sort-by-order
680
- %li
681
- %i.glyphicon.glyphicon-sort-by-order-alt
682
- glyphicon-sort-by-order-alt
683
- %li
684
- %i.glyphicon.glyphicon-sort-by-attributes
685
- glyphicon-sort-by-attributes
686
- %li
687
- %i.glyphicon.glyphicon-sort-by-attributes-alt
688
- glyphicon-sort-by-attributes-alt
689
- %li
690
- %i.glyphicon.glyphicon-unchecked
691
- glyphicon-unchecked
692
- %li
693
- %i.glyphicon.glyphicon-expand
694
- glyphicon-expand
695
- %li
696
- %i.glyphicon.glyphicon-collapse
697
- glyphicon-collapse
698
- %li
699
- %i.glyphicon.glyphicon-collapse-top
700
- glyphicon-collapse-top
701
- /
702
- Forms
703
- \==================================================
704
- %section#forms
705
- .page-header
706
- %h2 Forms
707
- .row
708
- .col-lg-8
709
- %h3 Form Inline
710
- %form.form-inline.well
711
- .col-md-3
712
- %input.form-control{placeholder: "Email", type: "text"}/
713
- .col-md-3
714
- %input.form-control{placeholder: "Password", type: "password"}/
715
- .checkbox
716
- %label
717
- %input{type: "checkbox"}/
718
- Remember me
719
- %button.btn.btn-default{type: "submit"} Sign in
720
- %h3 Form Horizontal
721
- %form.form-horizontal.well
722
- %fieldset
723
- %legend Bootstrap 3 Inputs
724
- .control-group
725
- %label.control-label{for: "input01"} Text input
726
- .controls
727
- %input#input01.form-control.input-xlarge{type: "text"}/
728
- %p.help-block In addition to freeform text, any HTML5 text-based input appears like so.
729
- .control-group
730
- %label.control-label{for: "optionsCheckbox"} Checkbox
731
- .controls
732
- %label.checkbox
733
- %input#optionsCheckbox{type: "checkbox", value: "option1"}/
734
- Option one is this and that—be sure to include why it's great
735
- .control-group
736
- %label.control-label{for: "select01"} Select list
737
- .controls
738
- %select#select01.form-control
739
- %option something
740
- %option 2
741
- %option 3
742
- %option 4
743
- %option 5
744
- .control-group
745
- %label.control-label{for: "multiSelect"} Multicon-select
746
- .controls
747
- %select#multiSelect.form-control{multiple: "multiple"}
748
- %option 1
749
- %option 2
750
- %option 3
751
- %option 4
752
- %option 5
753
- .control-group
754
- %label.control-label{for: "fileInput"} File input
755
- .controls
756
- %input#fileInput.form-control.input-file{type: "file"}/
757
- .control-group
758
- %label.control-label{for: "textarea"} Textarea
759
- .controls
760
- %textarea#textarea.form-control.input-xlarge{rows: "3"}
761
- .control-group
762
- %label.control-label{for: "optionsCheckbox2"} Disabled checkbox
763
- .controls
764
- %label.checkbox
765
- %input#optionsCheckbox2{disabled: "disabled", type: "checkbox", value: "option1"}/
766
- This is a disabled checkbox
767
- .control-group.warning
768
- %label.control-label{for: "inputWarning"} Input with warning
769
- .controls
770
- %input#inputWarning.form-control{type: "text"}/
771
- %span.help-inline Something may have gone wrong
772
- %hr/
773
- .form-actions
774
- %button.btn.btn-primary{type: "submit"} Save changes
775
- %button.btn{type: "reset"} Cancel
776
- /
777
- Tables
778
- \==================================================
779
- %section#tables
780
- .page-header
781
- %h1 Tables
782
- %table.table.table-bordered.table-striped.table-hover
783
- %thead
784
- %tr
785
- %th #
786
- %th First Name
787
- %th Last Name
788
- %th Username
789
- %tbody
790
- %tr
791
- %td 1
792
- %td Mark
793
- %td Otto
794
- %td @mdo
795
- %tr
796
- %td 2
797
- %td Jacob
798
- %td Thornton
799
- %td @fat
800
- %tr
801
- %td 3
802
- %td Larry
803
- %td the Bird
804
- %td @twitter
805
- /
806
- Miscellaneous
807
- \==================================================
808
- %section#miscellaneous
809
- .page-header
810
- %h1 Miscellaneous
811
- .row
812
- .col-lg-4
813
- %h3#breadcrumbs Breadcrumbs
814
- %ul.breadcrumb
815
- %li
816
- %a{href: "#"} Home
817
- %span.divider
818
- %li
819
- %a{href: "#"} Library
820
- %span.divider
821
- %li.active Data
822
- .col-lg-4
823
- %h3#pagination Pagination
824
- %ul.pagination
825
- %li
826
- %a{href: "#"} «
827
- %li
828
- %a{href: "#"} 1
829
- %li
830
- %a{href: "#"} 2
831
- %li
832
- %a{href: "#"} 3
833
- %li
834
- %a{href: "#"} 4
835
- %li
836
- %a{href: "#"} 5
837
- %li
838
- %a{href: "#"} »
839
- .col-lg-4
840
- %h3#pager Pagers
841
- %ul.pager
842
- %li
843
- %a{href: "#"} Previous
844
- %li
845
- %a{href: "#"} Next
846
- %ul.pager
847
- %li.previous.disabled
848
- %a{href: "#"} ? Older
849
- %li.next
850
- %a{href: "#"} Newer ?
851
- /
852
- Navs
853
- \==================================================
854
- .row
855
- .col-lg-4
856
- %h3#tabs Tabs
857
- %ul.nav.nav-tabs
858
- %li.active
859
- %a{"data-toggle" => "tab", href: "#A"} Section 1
860
- %li
861
- %a{"data-toggle" => "tab", href: "#B"} Section 2
862
- %li
863
- %a{"data-toggle" => "tab", href: "#C"} Section 3
864
- .tabbable
865
- .tab-content
866
- #A.tab-pane.active
867
- %p I'm in Section A.
868
- #B.tab-pane
869
- %p Howdy, I'm in Section B.
870
- #C.tab-pane
871
- %p What up girl, this is Section C.
872
- .col-lg-4
873
- %h3#pills Pills
874
- %ul.nav.nav-pills
875
- %li.active
876
- %a{href: "#"} Home
877
- %li
878
- %a{href: "#"} Profile
879
- %li.dropdown
880
- %a.dropdown-toggle{"data-toggle" => "dropdown", href: "#"}
881
- Dropdown
882
- %b.caret
883
- %ul.dropdown-menu
884
- %li
885
- %a{href: "#"} Action
886
- %li
887
- %a{href: "#"} Another action
888
- %li
889
- %a{href: "#"} Something else here
890
- %li.divider
891
- %li
892
- %a{href: "#"} Separated link
893
- %li.disabled
894
- %a{href: "#"} Disabled link
895
- .col-lg-4
896
- %h3#list Nav Lists
897
- .well{style: "padding: 8px 0;"}
898
- %ul.nav.nav-list
899
- %li.nav-header List header
900
- %li.active
901
- %a{href: "#"} Home
902
- %li
903
- %a{href: "#"} Library
904
- %li
905
- %a{href: "#"} Applications
906
- %li.divider
907
- %li
908
- %a{href: "#"} Help
909
- /
910
- Labels
911
- \==================================================
912
- .row
913
- .col-lg-4
914
- %h3#labels Labels
915
- %span.label Default
916
- %span.label.label-success Success
917
- %span.label.label-warning Warning
918
- %span.label.label-danger Danger
919
- %span.label.label-info Info
920
- .col-lg-4
921
- %h3#badges Badges
922
- %span.badge Default
923
- .col-lg-4
924
- %h3#badges Progress bars
925
- .progress
926
- .progress-bar.progress-bar-info{style: "width: 20%"}
927
- .progress
928
- .progress-bar.progress-bar-success{style: "width: 40%"}
929
- .progress
930
- .progress-bar.progress-bar-warning{style: "width: 60%"}
931
- .progress
932
- .progress-bar.progress-bar-danger{style: "width: 80%"}
933
- %br/
934
- /
935
- Panel & ListGroups
936
- \==================================================
937
- %hr/
938
- %h2#panels Bootstrap 3 Panels
939
- .row
940
- .col-lg-4
941
- .panel.panel-default
942
- .panel-heading Panel heading
943
- .panel-body Hello. This is the Panel content.
944
- .col-lg-4
945
- .panel.panel-primary
946
- .panel-heading Panel primary
947
- .panel-body Panels are new in BS3.
948
- .col-lg-4
949
- .panel.panel-success
950
- .panel-heading Panel success
951
- .panel-body You can use contextual classes.
952
- /
953
- ListGroups
954
- \==================================================
955
- %hr/
956
- %h2#panels Bootstrap 3 List Groups
957
- .row
958
- .col-lg-4
959
- %ul.list-group
960
- %li.list-group-item List item 1
961
- %li.list-group-item List item 2
962
- %li.list-group-item Mobile-first
963
- %li.list-group-item Responsive
964
- %li.list-group-item Lightweight
965
- .col-lg-4
966
- %ul.list-group
967
- %li.list-group-item
968
- %span.glyphicon.glyphicon-chevron-right
969
- List item 1
970
- %li.list-group-item
971
- %span.glyphicon.glyphicon-chevron-right
972
- List item 2
973
- %li.list-group-item
974
- %span.glyphicon.glyphicon-chevron-right
975
- Mobile-first
976
- %li.list-group-item
977
- %span.glyphicon.glyphicon-chevron-right
978
- Responsive
979
- %li.list-group-item
980
- %span.glyphicon.glyphicon-chevron-right
981
- Lightweight
982
- .col-lg-4
983
- .list-group
984
- %a.list-group-item.active{href: "#"}
985
- Linked list group
986
- %span.glyphicon.glyphicon-chevron-right
987
- %a.list-group-item{href: "#"}
988
- Dapibus ac facilisis in
989
- %span.glyphicon.glyphicon-chevron-right
990
- %a.list-group-item{href: "#"}
991
- Morbi leo risus
992
- %span.glyphicon.glyphicon-chevron-right
993
- %a.list-group-item{href: "#"}
994
- Porta ac consectetur ac
995
- %span.glyphicon.glyphicon-chevron-right
996
- %a.list-group-item{href: "#"}
997
- Vestibulum at eros
998
- %span.glyphicon.glyphicon-chevron-right
999
- /
1000
- Well Sizes
1001
- \==================================================
1002
- %hr/
1003
- %h2 Well Sizes
1004
- .row
1005
- .col-lg-12
1006
- .well.well-sm
1007
- \.well-sm
1008
- .well
1009
- \.well
1010
- .well.well-lg
1011
- \.well-lg
1012
- %hr/
1013
- %hr/
1014
- %script{src: "//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js", type: "text/javascript"}
1015
- {{ 'bootstrap.min.js' | javascript_tag }}
1016
- :javascript
1017
- $(document).ready(function() {
1018
- });