leather2 3.5.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/images/leather/hero24.jpg +0 -0
  5. data/app/assets/javascripts/leather.js +13 -0
  6. data/app/assets/javascripts/leather/navbar_transparent.coffee +4 -0
  7. data/app/assets/javascripts/leather/off_canvas.coffee +16 -0
  8. data/app/assets/stylesheets/docs.scss +3 -0
  9. data/app/assets/stylesheets/leather.scss +19 -0
  10. data/app/assets/stylesheets/leather/_buttons.scss +31 -0
  11. data/app/assets/stylesheets/leather/_devise.scss +72 -0
  12. data/app/assets/stylesheets/leather/_grid.scss +19 -0
  13. data/app/assets/stylesheets/leather/_list_groups.scss +33 -0
  14. data/app/assets/stylesheets/leather/_nav_menus.scss +125 -0
  15. data/app/assets/stylesheets/leather/_navbar_transparent.scss +23 -0
  16. data/app/assets/stylesheets/leather/_off_canvas.scss +109 -0
  17. data/app/assets/stylesheets/leather/_scroll_panels.scss +85 -0
  18. data/app/assets/stylesheets/leather/_toggle_columns.scss +23 -0
  19. data/app/assets/stylesheets/leather/_typography.scss +12 -0
  20. data/app/assets/stylesheets/leather/_utilities.scss +54 -0
  21. data/app/assets/stylesheets/leather/_variables.scss +8 -0
  22. data/app/assets/stylesheets/leather/components/_cta.scss +13 -0
  23. data/app/assets/stylesheets/leather/components/_features.scss +87 -0
  24. data/app/assets/stylesheets/leather/components/_flex_boxes.scss +37 -0
  25. data/app/assets/stylesheets/leather/components/_image_block.scss +55 -0
  26. data/app/controllers/leather/application_controller.rb +13 -0
  27. data/app/controllers/leather/layouts_controller.rb +15 -0
  28. data/app/helpers/leather/application_helper.rb +28 -0
  29. data/app/views/leather/application/_table.html.haml +23 -0
  30. data/app/views/leather/application/components.html.haml +173 -0
  31. data/app/views/leather/application/ui_kit.html.haml +405 -0
  32. data/app/views/leather/bootstrap_components/_dropdown_nav_item.html.haml +7 -0
  33. data/app/views/leather/bootstrap_components/_modal.html.haml +4 -0
  34. data/app/views/leather/bootstrap_components/_modal_body.html.haml +2 -0
  35. data/app/views/leather/bootstrap_components/_modal_footer.html.haml +2 -0
  36. data/app/views/leather/bootstrap_components/_modal_header.html.haml +5 -0
  37. data/app/views/leather/bootstrap_components/_nav_item.html.haml +2 -0
  38. data/app/views/leather/bootstrap_components/_nav_list.html.haml +2 -0
  39. data/app/views/leather/bootstrap_components/_navbar.html.haml +58 -0
  40. data/app/views/leather/layouts/_links.html.haml +8 -0
  41. data/app/views/leather/layouts/_navigation.html.haml +0 -0
  42. data/app/views/leather/layouts/admin.html.haml +20 -0
  43. data/app/views/leather/layouts/three_column.html.haml +47 -0
  44. data/app/views/leather/layouts/two_column.html.haml +34 -0
  45. data/config/routes.rb +7 -0
  46. data/lib/generators/leather/install/install_generator.rb +29 -0
  47. data/lib/leather.rb +12 -0
  48. data/lib/leather/action_controller_extension.rb +39 -0
  49. data/lib/leather/engine.rb +9 -0
  50. data/lib/leather/leather_helpers.rb +58 -0
  51. data/lib/leather/railtie.rb +12 -0
  52. data/lib/leather/version.rb +3 -0
  53. data/lib/tasks/leather_tasks.rake +4 -0
  54. data/templates/_navigation.html.haml +14 -0
  55. data/templates/bootstrap_variables.css.scss +848 -0
  56. data/templates/high_voltage.rb +4 -0
  57. data/templates/views/devise/passwords/edit.html.erb +28 -0
  58. data/templates/views/devise/passwords/new.html.erb +22 -0
  59. data/templates/views/devise/registrations/new.html.erb +32 -0
  60. data/templates/views/devise/sessions/new.html.erb +32 -0
  61. data/templates/views/devise/shared/_links.html.erb +23 -0
  62. data/templates/views/devise/shared/_welcome.html.erb +4 -0
  63. data/templates/views/pages/home.html.haml +2 -0
  64. data/test/dummy/README.rdoc +28 -0
  65. data/test/dummy/Rakefile +6 -0
  66. data/test/dummy/app/assets/javascripts/application.js +17 -0
  67. data/test/dummy/app/assets/stylesheets/application.css.scss +3 -0
  68. data/test/dummy/app/assets/stylesheets/bootstrap_variables.css.scss +848 -0
  69. data/test/dummy/app/controllers/application_controller.rb +5 -0
  70. data/test/dummy/app/helpers/application_helper.rb +2 -0
  71. data/test/dummy/app/models/user.rb +6 -0
  72. data/test/dummy/app/views/application/_navigation.html.haml +14 -0
  73. data/test/dummy/app/views/devise/passwords/edit.html.erb +28 -0
  74. data/test/dummy/app/views/devise/passwords/new.html.erb +22 -0
  75. data/test/dummy/app/views/devise/registrations/new.html.erb +32 -0
  76. data/test/dummy/app/views/devise/sessions/new.html.erb +32 -0
  77. data/test/dummy/app/views/devise/shared/_links.html.erb +23 -0
  78. data/test/dummy/app/views/devise/shared/_welcome.html.erb +4 -0
  79. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  80. data/test/dummy/app/views/pages/home.html.haml +2 -0
  81. data/test/dummy/bin/bundle +3 -0
  82. data/test/dummy/bin/rails +4 -0
  83. data/test/dummy/bin/rake +4 -0
  84. data/test/dummy/config.ru +4 -0
  85. data/test/dummy/config/application.rb +23 -0
  86. data/test/dummy/config/boot.rb +5 -0
  87. data/test/dummy/config/database.yml +25 -0
  88. data/test/dummy/config/environment.rb +5 -0
  89. data/test/dummy/config/environments/development.rb +37 -0
  90. data/test/dummy/config/environments/production.rb +82 -0
  91. data/test/dummy/config/environments/test.rb +39 -0
  92. data/test/dummy/config/initializers/assets.rb +8 -0
  93. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  94. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  95. data/test/dummy/config/initializers/devise.rb +259 -0
  96. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  97. data/test/dummy/config/initializers/high_voltage.rb +4 -0
  98. data/test/dummy/config/initializers/inflections.rb +16 -0
  99. data/test/dummy/config/initializers/mime_types.rb +4 -0
  100. data/test/dummy/config/initializers/session_store.rb +3 -0
  101. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  102. data/test/dummy/config/locales/devise.en.yml +60 -0
  103. data/test/dummy/config/locales/en.yml +23 -0
  104. data/test/dummy/config/routes.rb +4 -0
  105. data/test/dummy/config/secrets.yml +22 -0
  106. data/test/dummy/db/development.sqlite3 +0 -0
  107. data/test/dummy/db/migrate/20140814162425_devise_create_users.rb +42 -0
  108. data/test/dummy/db/schema.rb +34 -0
  109. data/test/dummy/log/development.log +85136 -0
  110. data/test/dummy/public/404.html +67 -0
  111. data/test/dummy/public/422.html +67 -0
  112. data/test/dummy/public/500.html +66 -0
  113. data/test/dummy/public/favicon.ico +0 -0
  114. data/test/dummy/test/fixtures/users.yml +11 -0
  115. data/test/dummy/test/models/user_test.rb +7 -0
  116. data/test/integration/navigation_test.rb +10 -0
  117. data/test/leather_test.rb +7 -0
  118. data/test/test_helper.rb +15 -0
  119. metadata +348 -0
@@ -0,0 +1,23 @@
1
+ %table{class: "table #{table_class}"}
2
+ %thead
3
+ %tr
4
+ %th #
5
+ %th First Name
6
+ %th Last Name
7
+ %th Username
8
+ %tbody
9
+ %tr
10
+ %td 1
11
+ %td Mark
12
+ %td Otto
13
+ %td @mdo
14
+ %tr
15
+ %td 2
16
+ %td Jacob
17
+ %td Thornton
18
+ %td @fat
19
+ %tr
20
+ %td 3
21
+ %td Larry
22
+ %td the Bird
23
+ %td @twitter
@@ -0,0 +1,173 @@
1
+ = content_for :extra_body_classes, "bg-gray-lighter container-lg"
2
+
3
+ .jumbotron.relative.no-margin.text-white{style: "height: 700px;"}
4
+ .abs-cover.hero24
5
+ .vertical-center.text-center
6
+ .text-shadowed
7
+ %h1.text-lighter Welcome to Leather
8
+ %p.text-lighter Hello
9
+ = link_to "Learn More", "", class: "btn btn-lg no-radius btn-primary"
10
+
11
+ %section.bg-gray-lightest.features
12
+ .container
13
+ .row
14
+ .col-sm-4
15
+ .feature
16
+ %h4.detail-line Feature 1
17
+ %p.text-muted Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
18
+ .col-sm-4
19
+ .feature
20
+ %h4.detail-line Feature 2
21
+ %p.text-muted Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
22
+ .col-sm-4
23
+ .feature
24
+ %h4.detail-line Feature 3
25
+ %p.text-muted Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
26
+
27
+ %section.bg-white.features
28
+ .container
29
+ .row
30
+ .col-sm-3
31
+ .feature
32
+ %h4.detail-line Feature 1
33
+ %p.text-muted Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.
34
+ .col-sm-3
35
+ .feature
36
+ %h4.detail-line Feature 2
37
+ %p.text-muted Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.
38
+ .col-sm-3
39
+ .feature
40
+ %h4.detail-line Feature 3
41
+ %p.text-muted Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.
42
+ .col-sm-3
43
+ .feature
44
+ %h4.detail-line Feature 4
45
+ %p.text-muted Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.
46
+
47
+ %section.no-padding
48
+ .flex-grid.text-center
49
+ .flex-row
50
+ = link_to "#", class: "feature-block feature-block-primary flex-cell" do
51
+ %h4.text-light Hover Link Feature
52
+ .detail-line
53
+ %p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
54
+ = link_to "#", class: "feature-block feature-block-primary flex-cell" do
55
+ %h4.text-light Hover Link Feature
56
+ .detail-line
57
+ %p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
58
+ = link_to "#", class: "feature-block feature-block-primary flex-cell" do
59
+ %h4.text-light Hover Link Feature
60
+ .detail-line
61
+ %p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
62
+
63
+ %section.bg-gray-lightest.relative.image-block
64
+ .image.image-right.col-sm-5.col-md-6
65
+ .abs-cover.hero24
66
+ .container
67
+ .row
68
+ .col-sm-7.col-md-5
69
+ .image-block-copy
70
+ %h2.no-margin.text-lighter Image Block Right
71
+ %p.text-muted Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
72
+ = link_to "Learn More", "", class: "btn no-radius btn-primary"
73
+
74
+ %section.bg-gray-lightest.relative.image-block
75
+ .image.image-left.col-sm-5.col-md-6
76
+ .abs-cover.hero24
77
+ .container
78
+ .row
79
+ .col-sm-7.col-md-5.col-md-offset-7.col-sm-offset-5
80
+ .image-block-copy
81
+ %h2.no-margin.text-lighter Image Block Left
82
+ %p.text-muted Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
83
+ = link_to "Learn More", "", class: "btn no-radius btn-primary"
84
+
85
+ %section.bg-white
86
+ .container
87
+ .flex-grid.flex-grid-bordered.flex-grid-padded
88
+ .flex-row
89
+ .flex-cell.flex-cell-wide.bg-gray-lightest
90
+ Flex Box
91
+ .flex-cell
92
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
93
+ .flex-row
94
+ .flex-cell.bg-gray-lightest
95
+ Flex Box
96
+ .flex-cell.flex-cell-wide
97
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
98
+ .flex-row
99
+ .flex-cell.bg-gray-lightest
100
+ Flex Box
101
+ .flex-cell
102
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
103
+ .flex-row
104
+ .flex-cell.bg-gray-lightest
105
+ Flex Box
106
+ .flex-cell
107
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
108
+ .flex-cell
109
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
110
+ .flex-row
111
+ .flex-cell.bg-gray-lightest
112
+ Flex Box
113
+ .flex-cell
114
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
115
+ .flex-cell
116
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
117
+ .flex-cell
118
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
119
+
120
+ %section.bg-gray-lightest
121
+ .container
122
+ .row
123
+ .col-sm-2
124
+ .text-center
125
+ %p= image_tag "http://placehold.it/200x200", class: "img-responsive img-circle inline-block"
126
+ %p
127
+ %span.text-muted by
128
+ Author Name
129
+ .col-sm-9.col-sm-offset-1
130
+ %h4.detail-line.text-lighter.text-muted.no-margin= Time.zone.now.strftime("%b %d, %Y")
131
+ %h3.text-lighter.blog-heading Post Title
132
+
133
+ %p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
134
+
135
+ %h4.blog-heading Subheading
136
+
137
+ %p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
138
+
139
+ %p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
140
+
141
+ %section.bg-gray-radial-light.no-overflow.image-block.image-block-bottom
142
+ .container
143
+ .row.relative
144
+ .col-sm-6
145
+ .image-block-copy.relative
146
+ .vertical-center.absolute
147
+ %h2.text-light.text-primary.no-margin Title
148
+ %p.text-muted Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
149
+ = link_to "Learn More", "", class: "btn btn-primary no-radius btn-outline"
150
+ .image.image-right.col-sm-6.col-md-4
151
+ = image_tag "http://placehold.it/635x1034", class: "img-responsive"
152
+
153
+ %section.bg-white.text-center.cta.cta-inline
154
+ .container
155
+ %h2.text-primary.text-light.pull-left Call to Action
156
+ = link_to "Learn More", "", class: "btn btn-primary btn-lg text-white no-radius btn-outline pull-right"
157
+
158
+ %section.bg-gray-radial-dark.text-white.no-overflow.image-block.image-block-bottom
159
+ .container
160
+ .row.relative
161
+ .col-sm-6.col-sm-push-6
162
+ .image-block-copy.relative
163
+ .vertical-center.absolute
164
+ %h2.text-light.no-margin Title
165
+ %p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex.
166
+ = link_to "Learn More", "", class: "btn btn-default text-white no-radius btn-outline"
167
+ .image.image-left.col-sm-6.col-md-4
168
+ = image_tag "http://placehold.it/635x1034", class: "img-responsive"
169
+
170
+ %section.bg-white.text-center.cta
171
+ .container
172
+ %h2.text-primary.text-light Call to Action
173
+ %p= link_to "Learn More", "", class: "btn btn-primary btn-lg text-white no-radius btn-outline"
@@ -0,0 +1,405 @@
1
+ %nav.nav-menu.nav-menu-default.nav-menu-fixed-left.off-canvas.off-canvas-left#off-canvas-left
2
+ .nav-menu-header
3
+ = link_to "Brand", "#", class: "nav-menu-brand"
4
+ %ul.nav.nav-menu-nav
5
+ %li= link_to "Link", "#"
6
+ %li.active= link_to "Active Link", "#"
7
+ %li= link_to "Link", "#"
8
+
9
+ %nav.nav-menu.nav-menu-default.nav-menu-fixed-right.off-canvas.off-canvas-right#off-canvas-right
10
+ .nav-menu-header
11
+ = link_to "Brand", "#", class: "nav-menu-brand"
12
+ %ul.nav.nav-menu-nav
13
+ %li= link_to "Link", "#"
14
+ %li.active= link_to "Active Link", "#"
15
+ %li= link_to "Link", "#"
16
+
17
+ #main
18
+ .jumbotron
19
+ .container
20
+ %h1 Hello, world!
21
+ %p This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.
22
+ %p
23
+ %a.btn.btn-primary.btn-lg{role: "button"} Learn more
24
+
25
+ = navbar "Brand", "#", container_mode: :with, class: "navbar-default navbar-static-top" do
26
+ = nav_list do
27
+ = nav_item 'Link', '#'
28
+ = nav_item 'Link', '#'
29
+ = dropdown_nav_item 'Dropdown', '#' do
30
+ = nav_item 'Action', '#'
31
+ = nav_item 'Another action', '#'
32
+ = nav_item 'Something else here', '#'
33
+ %li.divider
34
+ = nav_item 'Separated link', '#'
35
+ %form.navbar-form.navbar-left{role: "search"}
36
+ .form-group
37
+ %input.form-control{placeholder: "Search", type: "text"}/
38
+ %button.btn.btn-default{type: "submit"} Submit
39
+ = nav_list class: 'navbar-right' do
40
+ = nav_item 'Link', '#'
41
+ = dropdown_nav_item 'Dropdown', '#' do
42
+ = nav_item 'Action', '#'
43
+ = nav_item 'Another action', '#'
44
+ = nav_item 'Something else here', '#'
45
+ %li.divider
46
+ = nav_item 'Separated link', '#'
47
+
48
+ = navbar "Brand", "#", container_mode: :with, class: "navbar-inverse navbar-static-top" do
49
+ = nav_list do
50
+ = nav_item 'Link', '#'
51
+ = nav_item 'Link', '#'
52
+ = dropdown_nav_item 'Dropdown', '#' do
53
+ = nav_item 'Action', '#'
54
+ = nav_item 'Another action', '#'
55
+ = nav_item 'Something else here', '#'
56
+ %li.divider
57
+ = nav_item 'Separated link', '#'
58
+ %form.navbar-form.navbar-left{role: "search"}
59
+ .form-group
60
+ %input.form-control{placeholder: "Search", type: "text"}/
61
+ %button.btn.btn-default{type: "submit"} Submit
62
+ = nav_list class: 'navbar-right' do
63
+ = nav_item 'Link', '#'
64
+ = dropdown_nav_item 'Dropdown', '#' do
65
+ = nav_item 'Action', '#'
66
+ = nav_item 'Another action', '#'
67
+ = nav_item 'Something else here', '#'
68
+ %li.divider
69
+ = nav_item 'Separated link', '#'
70
+
71
+ .container
72
+ %h1.page-header Breadcrumbs
73
+ %ol.breadcrumb
74
+ %li
75
+ %a{href: "#"} Home
76
+ %li
77
+ %a{href: "#"} Library
78
+ %li.active Data
79
+
80
+ .container
81
+ %h1.page-header Off-Canvas Menus
82
+ = link_to "Left", "#", data: { toggle: "off-canvas", target: "#off-canvas-left"}, class: "btn btn-primary"
83
+ = link_to "Right", "#", data: { toggle: "off-canvas", target: "#off-canvas-right"}, class: "btn btn-primary"
84
+
85
+ %h1.page-header Typography
86
+ %h3 Headings
87
+ %h1
88
+ h1. Bootstrap heading
89
+ %small Secondary text
90
+ %h2
91
+ h2. Bootstrap heading
92
+ %small Secondary text
93
+ %h3
94
+ h3. Bootstrap heading
95
+ %small Secondary text
96
+ %h4
97
+ h4. Bootstrap heading
98
+ %small Secondary text
99
+ %h5
100
+ h5. Bootstrap heading
101
+ %small Secondary text
102
+ %h6
103
+ h6. Bootstrap heading
104
+ %small Secondary text
105
+ %h3 Lead Copy
106
+ %p.lead Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.
107
+ %h3 Body Copy
108
+ %p Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.
109
+ %p Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.
110
+ %h3 Blockquote
111
+ %blockquote
112
+ %p Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
113
+ %h3 Lists
114
+ %h4 Unordered List
115
+ %ul
116
+ %li List Item
117
+ %li List Item
118
+ %h4 Ordered List
119
+ %ol
120
+ %li List Item
121
+ %li List Item
122
+ %h4 Unstyled List
123
+ %ul.list-unstyled
124
+ %li List Item
125
+ %li List Item
126
+ %li List Item
127
+ %h4 Definition List
128
+ %dl
129
+ %dt Description lists
130
+ %dd A description list is perfect for defining terms.
131
+ %dt Euismod
132
+ %dd Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
133
+ %dd Donec id elit non mi porta gravida at eget metus.
134
+ %dt Malesuada porta
135
+ %dd Etiam porta sem malesuada magna mollis euismod.
136
+ %h1.page-header Buttons
137
+ / Standard button
138
+ %button.btn.btn-default{type: "button"} Default
139
+ / Provides extra visual weight and identifies the primary action in a set of buttons
140
+ %button.btn.btn-primary{type: "button"} Primary
141
+ / Indicates a successful or positive action
142
+ %button.btn.btn-success{type: "button"} Success
143
+ / Contextual button for informational alert messages
144
+ %button.btn.btn-info{type: "button"} Info
145
+ / Indicates caution should be taken with this action
146
+ %button.btn.btn-warning{type: "button"} Warning
147
+ / Indicates a dangerous or potentially negative action
148
+ %button.btn.btn-danger{type: "button"} Danger
149
+ / Deemphasize a button by making it look like a link while maintaining button behavior
150
+ %button.btn.btn-link{type: "button"} Link
151
+
152
+ %hr
153
+
154
+ .row
155
+ .col-md-12
156
+ %button.btn.btn-default.btn-lg{type: "button"} Large
157
+ %button.btn.btn-default{type: "button"} Default
158
+ %button.btn.btn-default.btn-sm{type: "button"} Small
159
+ %button.btn.btn-default.btn-xs{type: "button"} Extra Small
160
+
161
+ %h1.page-header Tables
162
+ %h3 Basic Table
163
+ = render 'table', table_class: ""
164
+ %h3 Striped Table
165
+ = render 'table', table_class: "table-striped"
166
+ %h3 Bordered Table
167
+ = render 'table', table_class: "table-bordered"
168
+ %h3 Hover Rows
169
+ = render 'table', table_class: "table-hover"
170
+ %h3 Condensed Table
171
+ = render 'table', table_class: "table-condensed"
172
+ %h1.page-header Forms
173
+ %form{role: "form"}
174
+ .form-group
175
+ %label{for: "exampleInputEmail1"} Email address
176
+ %input#exampleInputEmail1.form-control{placeholder: "Enter email", type: "email"}/
177
+ .form-group
178
+ %label{for: "exampleInputPassword1"} Password
179
+ %input#exampleInputPassword1.form-control{placeholder: "Password", type: "password"}/
180
+ .form-group
181
+ %label{for: "exampleInputFile"} File input
182
+ %input#exampleInputFile{type: "file"}/
183
+ %p.help-block Example block-level help text here.
184
+ .checkbox
185
+ %label
186
+ %input{type: "checkbox", value: ""}/
187
+ Option one is this and that—be sure to include why it's great
188
+ .checkbox.disabled
189
+ %label
190
+ %input{disabled: "disabled", type: "checkbox", value: ""}/
191
+ Option two is disabled
192
+ .radio
193
+ %label
194
+ %input#optionsRadios1{checked: "checked", name: "optionsRadios", type: "radio", value: "option1"}/
195
+ Option one is this and that—be sure to include why it's great
196
+ .radio
197
+ %label
198
+ %input#optionsRadios2{name: "optionsRadios", type: "radio", value: "option2"}/
199
+ Option two can be something else and selecting it will deselect option one
200
+ .radio.disabled
201
+ %label
202
+ %input#optionsRadios3{disabled: "disabled", name: "optionsRadios", type: "radio", value: "option3"}/
203
+ Option three is disabled
204
+ %button.btn.btn-default{type: "submit"} Submit
205
+ %h1.page-header Contextual Classes
206
+ %p.text-muted text-muted ...Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.
207
+ %p.text-primary text-primary ...Nullam id dolor id nibh ultricies vehicula ut id elit.
208
+ %p.text-success text-success ...Duis mollis, est non commodo luctus, nisi erat porttitor ligula.
209
+ %p.text-info text-info ...Maecenas sed diam eget risus varius blandit sit amet non magna.
210
+ %p.text-warning text-warning ...Etiam porta sem malesuada magna mollis euismod.
211
+ %p.text-danger text-danger ...Donec ullamcorper nulla non metus auctor fringilla.
212
+ %p.bg-primary{style: "padding: 10px;"} bg-primary
213
+ %p.bg-success{style: "padding: 10px;"} bg-success
214
+ %p.bg-info{style: "padding: 10px;"} bg-info
215
+ %p.bg-warning{style: "padding: 10px;"} bg-warning
216
+ %p.bg-danger{style: "padding: 10px;"} bg-danger
217
+ %h1.page-header Alerts
218
+ .bs-example
219
+ .alert.alert-success{role: "alert"}
220
+ %strong Well done!
221
+ You successfully read this important alert message.
222
+ .alert.alert-info{role: "alert"}
223
+ %strong Heads up!
224
+ This alert needs your attention, but it's not super important.
225
+ .alert.alert-warning{role: "alert"}
226
+ %strong Warning!
227
+ Better check yourself, you're not looking too good.
228
+ .alert.alert-danger{role: "alert"}
229
+ %strong Oh snap!
230
+ Change a few things up and try submitting again.
231
+ %h1.page-header Progress Bars
232
+ .progress
233
+ .progress-bar{"aria-valuemax" => "100", "aria-valuemin" => "0", "aria-valuenow" => "60", role: "progressbar", style: "width: 60%;"}
234
+ 60%
235
+ .progress
236
+ .progress-bar.progress-bar-success{"aria-valuemax" => "100", "aria-valuemin" => "0", "aria-valuenow" => "40", role: "progressbar", style: "width: 40%"}
237
+ %span.sr-only 40% Complete (success)
238
+ .progress
239
+ .progress-bar.progress-bar-info{"aria-valuemax" => "100", "aria-valuemin" => "0", "aria-valuenow" => "20", role: "progressbar", style: "width: 20%"}
240
+ %span.sr-only 20% Complete
241
+ .progress
242
+ .progress-bar.progress-bar-warning{"aria-valuemax" => "100", "aria-valuemin" => "0", "aria-valuenow" => "60", role: "progressbar", style: "width: 60%"}
243
+ %span.sr-only 60% Complete (warning)
244
+ .progress
245
+ .progress-bar.progress-bar-danger{"aria-valuemax" => "100", "aria-valuemin" => "0", "aria-valuenow" => "80", role: "progressbar", style: "width: 80%"}
246
+ %span.sr-only 80% Complete
247
+ %h1.page-header Panels
248
+ .bs-example
249
+ .panel.panel-primary
250
+ .panel-heading
251
+ %h3.panel-title Panel title
252
+ .panel-body
253
+ Panel content
254
+ .panel-footer Panel footer
255
+ .panel.panel-success
256
+ .panel-heading
257
+ %h3.panel-title Panel title
258
+ .panel-body
259
+ Panel content
260
+ .panel.panel-info
261
+ .panel-heading
262
+ %h3.panel-title Panel title
263
+ .panel-body
264
+ Panel content
265
+ .panel.panel-warning
266
+ .panel-heading
267
+ %h3.panel-title Panel title
268
+ .panel-body
269
+ Panel content
270
+ .panel.panel-danger
271
+ .panel-heading
272
+ %h3.panel-title Panel title
273
+ .panel-body
274
+ Panel content
275
+
276
+ %h1.page-header Scrolling Panels
277
+
278
+ .row
279
+ .col-sm-6
280
+ %h3 With Header
281
+ .relative{style: "height: 250px; border: 1px solid #CCC;"}
282
+ .scroll-panel
283
+ .scroll-panel-header
284
+ = link_to "#", class: "btn btn-default btn-sm pull-left" do
285
+ %i.fa.fa-chevron-left
286
+ = link_to "Menu", "#", class: "btn btn-default btn-sm pull-right"
287
+ %h3.scroll-panel-title Title
288
+ .scroll-panel-body
289
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
290
+
291
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
292
+
293
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
294
+
295
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
296
+
297
+ .col-sm-6
298
+ %h3 No Header
299
+ .relative{style: "height: 250px; border: 1px solid #CCC;"}
300
+ .scroll-panel
301
+ .scroll-panel-body
302
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
303
+
304
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
305
+
306
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
307
+
308
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
309
+
310
+ .row
311
+ .col-sm-6
312
+ %h3 Tablet Header
313
+ .relative{style: "height: 250px; border: 1px solid #CCC;"}
314
+ .scroll-panel
315
+ .scroll-panel-header.visible-sm.visible-xs
316
+ = link_to "#", class: "btn btn-default btn-sm pull-left" do
317
+ %i.fa.fa-chevron-left
318
+ = link_to "Menu", "#", class: "btn btn-default btn-sm pull-right"
319
+ %h3.scroll-panel-title Title
320
+ .scroll-panel-body
321
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
322
+
323
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
324
+
325
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
326
+
327
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
328
+
329
+ .col-sm-6
330
+ %h3 Mobile Header
331
+ .relative{style: "height: 250px; border: 1px solid #CCC;"}
332
+ .scroll-panel
333
+ .scroll-panel-header.visible-xs
334
+ = link_to "#", class: "btn btn-default btn-sm pull-left" do
335
+ %i.fa.fa-chevron-left
336
+ = link_to "Menu", "#", class: "btn btn-default btn-sm pull-right"
337
+ %h3.scroll-panel-title Title
338
+ .scroll-panel-body
339
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
340
+
341
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
342
+
343
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
344
+
345
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
346
+
347
+ %h1.page-header List Groups
348
+ .list-group
349
+ = link_to "List Group Item", "", class: "list-group-item"
350
+ = link_to "List Group Item", "", class: "list-group-item"
351
+ = link_to "List Group Item", "", class: "list-group-item"
352
+ = link_to "List Group Item", "", class: "list-group-item"
353
+
354
+ %ul.list-group.list-group-button-links
355
+ - 3.times do
356
+ %li.list-group-item
357
+ = link_to "List Group Item", "", class: "list-group-link"
358
+ .list-group-actions
359
+ = link_to "Delete", "", class: "btn btn-xs btn-danger"
360
+
361
+ %h1.page-header Wells
362
+ .well Normal well
363
+ .well.well-lg Large well
364
+ .well.well-sm Small well
365
+ %h1.page-header Tabs
366
+ .bs-example.bs-example-tabs
367
+ %ul#myTab.nav.nav-tabs{role: "tablist"}
368
+ %li.active
369
+ %a{"data-toggle" => "tab", href: "#home", role: "tab"} Home
370
+ %li
371
+ %a{"data-toggle" => "tab", href: "#profile", role: "tab"} Profile
372
+ %li.dropdown
373
+ %a#myTabDrop1.dropdown-toggle{"data-toggle" => "dropdown", href: "#"}
374
+ Dropdown
375
+ %span.caret
376
+ %ul.dropdown-menu{"aria-labelledby" => "myTabDrop1", role: "menu"}
377
+ %li
378
+ %a{"data-toggle" => "tab", href: "#dropdown1", role: "tab", tabindex: "-1"} @fat
379
+ %li
380
+ %a{"data-toggle" => "tab", href: "#dropdown2", role: "tab", tabindex: "-1"} @mdo
381
+ #myTabContent.tab-content
382
+ #home.tab-pane.fade.in.active
383
+ %p Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
384
+ #profile.tab-pane.fade
385
+ %p Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park.
386
+ #dropdown1.tab-pane.fade
387
+ %p Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free, carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray yr.
388
+ #dropdown2.tab-pane.fade
389
+ %p Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater. Lomo wolf viral, mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan.
390
+ %h1.page-header Modal
391
+ .modal{style: "position: relative; top: auto; right: auto; bottom: auto; left: auto; z-index: 1; display: block;"}
392
+ .modal-dialog
393
+ .modal-content
394
+ .modal-header
395
+ %button.close{"data-dismiss" => "modal", type: "button"}
396
+ %span{"aria-hidden" => "true"} ×
397
+ %span.sr-only Close
398
+ %h4.modal-title Modal title
399
+ .modal-body
400
+ %p One fine body…
401
+ .modal-footer
402
+ %button.btn.btn-default{"data-dismiss" => "modal", type: "button"} Close
403
+ %button.btn.btn-primary{type: "button"} Save changes
404
+ / /.modal-content
405
+ / /.modal-dialog