twitter-bootstrap-rails 5.3.0 → 5.4.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +81 -0
- data/README.md +128 -628
- data/app/assets/javascripts/twitter/bootstrap/bootstrap.min.js +3 -3
- data/app/assets/stylesheets/twitter-bootstrap-static/bootstrap.css +3 -3
- data/lib/generators/bootstrap/badge/badge_generator.rb +13 -0
- data/lib/generators/bootstrap/breadcrumb/breadcrumb_generator.rb +13 -0
- data/lib/generators/bootstrap/button/button_generator.rb +13 -0
- data/lib/generators/bootstrap/cdn/cdn_generator.rb +39 -0
- data/lib/generators/bootstrap/cdn_tags.rb +43 -0
- data/lib/generators/bootstrap/dropdown/dropdown_generator.rb +13 -0
- data/lib/generators/bootstrap/features/features_generator.rb +13 -0
- data/lib/generators/bootstrap/footer/footer_generator.rb +13 -0
- data/lib/generators/bootstrap/header/header_generator.rb +13 -0
- data/lib/generators/bootstrap/hero/hero_generator.rb +13 -0
- data/lib/generators/bootstrap/install/install_generator.rb +120 -61
- data/lib/generators/bootstrap/install/templates/application.js +1 -1
- data/lib/generators/bootstrap/install/templates/bootstrap.js +10 -3
- data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.css +2 -2
- data/lib/generators/bootstrap/jumbotron/jumbotron_generator.rb +13 -0
- data/lib/generators/bootstrap/layout/layout_generator.rb +65 -1
- data/lib/generators/bootstrap/layout/templates/layout.html.erb +14 -9
- data/lib/generators/bootstrap/layout/templates/layout.html.haml +28 -43
- data/lib/generators/bootstrap/layout/templates/layout.html.slim +25 -40
- data/lib/generators/bootstrap/list_group/list_group_generator.rb +13 -0
- data/lib/generators/bootstrap/modal/modal_generator.rb +13 -0
- data/lib/generators/bootstrap/sidebar/sidebar_generator.rb +13 -0
- data/lib/generators/bootstrap/snippets/snippet_base.rb +126 -0
- data/lib/generators/bootstrap/snippets/snippet_catalog.rb +134 -0
- data/lib/generators/bootstrap/snippets/templates/badges/pills.html.erb +10 -0
- data/lib/generators/bootstrap/snippets/templates/badges/subtle.html.erb +10 -0
- data/lib/generators/bootstrap/snippets/templates/badges/subtle_bordered.html.erb +20 -0
- data/lib/generators/bootstrap/snippets/templates/badges/with_avatar.html.erb +34 -0
- data/lib/generators/bootstrap/snippets/templates/badges/with_avatar_divider.html.erb +66 -0
- data/lib/generators/bootstrap/snippets/templates/badges/with_icons.html.erb +26 -0
- data/lib/generators/bootstrap/snippets/templates/breadcrumbs/basic.html.erb +9 -0
- data/lib/generators/bootstrap/snippets/templates/breadcrumbs/chevron.html.erb +18 -0
- data/lib/generators/bootstrap/snippets/templates/breadcrumbs/custom.html.erb +18 -0
- data/lib/generators/bootstrap/snippets/templates/breadcrumbs/with_icons.html.erb +18 -0
- data/lib/generators/bootstrap/snippets/templates/buttons/circle.html.erb +20 -0
- data/lib/generators/bootstrap/snippets/templates/buttons/grid.html.erb +6 -0
- data/lib/generators/bootstrap/snippets/templates/buttons/loading.html.erb +10 -0
- data/lib/generators/bootstrap/snippets/templates/buttons/pills.html.erb +11 -0
- data/lib/generators/bootstrap/snippets/templates/buttons/with_icons.html.erb +14 -0
- data/lib/generators/bootstrap/snippets/templates/dropdowns/calendar.html.erb +156 -0
- data/lib/generators/bootstrap/snippets/templates/dropdowns/mega_menu.html.erb +140 -0
- data/lib/generators/bootstrap/snippets/templates/dropdowns/simple.html.erb +20 -0
- data/lib/generators/bootstrap/snippets/templates/dropdowns/with_icons.html.erb +88 -0
- data/lib/generators/bootstrap/snippets/templates/dropdowns/with_search.html.erb +64 -0
- data/lib/generators/bootstrap/snippets/templates/features/columns_with_icons.html.erb +46 -0
- data/lib/generators/bootstrap/snippets/templates/features/custom_cards.html.erb +79 -0
- data/lib/generators/bootstrap/snippets/templates/features/hanging_icons.html.erb +41 -0
- data/lib/generators/bootstrap/snippets/templates/features/icon_grid.html.erb +77 -0
- data/lib/generators/bootstrap/snippets/templates/features/with_title.html.erb +50 -0
- data/lib/generators/bootstrap/snippets/templates/footers/columns.html.erb +43 -0
- data/lib/generators/bootstrap/snippets/templates/footers/simple.html.erb +15 -0
- data/lib/generators/bootstrap/snippets/templates/footers/with_brand.html.erb +22 -0
- data/lib/generators/bootstrap/snippets/templates/footers/with_nav.html.erb +12 -0
- data/lib/generators/bootstrap/snippets/templates/footers/with_newsletter.html.erb +62 -0
- data/lib/generators/bootstrap/snippets/templates/headers/centered.html.erb +15 -0
- data/lib/generators/bootstrap/snippets/templates/headers/dark_double.html.erb +66 -0
- data/lib/generators/bootstrap/snippets/templates/headers/dark_search.html.erb +25 -0
- data/lib/generators/bootstrap/snippets/templates/headers/double.html.erb +28 -0
- data/lib/generators/bootstrap/snippets/templates/headers/grid_dropdown.html.erb +47 -0
- data/lib/generators/bootstrap/snippets/templates/headers/light_search.html.erb +34 -0
- data/lib/generators/bootstrap/snippets/templates/headers/nav_pills.html.erb +11 -0
- data/lib/generators/bootstrap/snippets/templates/headers/with_auth_buttons.html.erb +22 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/centered.html.erb +13 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/centered_screenshot.html.erb +17 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/cropped_image.html.erb +17 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/dark.html.erb +14 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/signup_form.html.erb +26 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/with_image.html.erb +17 -0
- data/lib/generators/bootstrap/snippets/templates/icons/_bootstrap_icons.html.erb +134 -0
- data/lib/generators/bootstrap/snippets/templates/jumbotrons/basic.html.erb +10 -0
- data/lib/generators/bootstrap/snippets/templates/jumbotrons/full_width.html.erb +12 -0
- data/lib/generators/bootstrap/snippets/templates/jumbotrons/placeholder.html.erb +13 -0
- data/lib/generators/bootstrap/snippets/templates/jumbotrons/with_icon.html.erb +22 -0
- data/lib/generators/bootstrap/snippets/templates/list-groups/checkable.html.erb +24 -0
- data/lib/generators/bootstrap/snippets/templates/list-groups/checkboxes.html.erb +45 -0
- data/lib/generators/bootstrap/snippets/templates/list-groups/checkboxes_expanded.html.erb +52 -0
- data/lib/generators/bootstrap/snippets/templates/list-groups/radios.html.erb +32 -0
- data/lib/generators/bootstrap/snippets/templates/list-groups/with_avatars.html.erb +36 -0
- data/lib/generators/bootstrap/snippets/templates/modals/confirm.html.erb +18 -0
- data/lib/generators/bootstrap/snippets/templates/modals/sheet.html.erb +19 -0
- data/lib/generators/bootstrap/snippets/templates/modals/signup.html.erb +44 -0
- data/lib/generators/bootstrap/snippets/templates/modals/whats_new.html.erb +41 -0
- data/lib/generators/bootstrap/snippets/templates/sidebars/collapsible.html.erb +90 -0
- data/lib/generators/bootstrap/snippets/templates/sidebars/dark.html.erb +67 -0
- data/lib/generators/bootstrap/snippets/templates/sidebars/icon_only.html.erb +59 -0
- data/lib/generators/bootstrap/snippets/templates/sidebars/light.html.erb +67 -0
- data/lib/generators/bootstrap/snippets/templates/sidebars/list_group.html.erb +94 -0
- data/lib/generators/bootstrap/starter/starter_generator.rb +37 -0
- data/lib/generators/bootstrap/starter/templates/starter.html.erb +13 -0
- data/lib/twitter/bootstrap/rails/bootstrap.rb +1 -0
- data/lib/twitter/bootstrap/rails/config.rb +54 -0
- data/lib/twitter/bootstrap/rails/engine.rb +0 -8
- data/lib/twitter/bootstrap/rails/version.rb +28 -1
- data/lib/twitter-bootstrap-rails.rb +0 -1
- data/spec/lib/generators/cdn_generator_spec.rb +42 -0
- data/spec/lib/generators/install_generator_spec.rb +148 -0
- data/spec/lib/generators/layout_generator_spec.rb +124 -0
- data/spec/lib/generators/no_hardcoded_versions_spec.rb +45 -0
- data/spec/lib/generators/snippet_generators_spec.rb +201 -0
- data/spec/lib/generators/starter_generator_spec.rb +54 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/support/generator_spec_helper.rb +87 -0
- data/vendor/assets/javascripts/twitter/bootstrap/bootstrap.bundle.min.js +3 -3
- data/vendor/assets/stylesheets/twitter/bootstrap/bootstrap.min.css +3 -3
- metadata +99 -123
- data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.svg +0 -288
- data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/app/helpers/glyph_helper.rb +0 -23
- data/lib/generators/bootstrap/install/templates/bootstrap.coffee +0 -3
- data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.less +0 -21
- data/spec/lib/twitter_bootstrap_rails/glyph_helper_spec.rb +0 -24
- data/vendor/assets/stylesheets/twitter-bootstrap-static/bootstrap.css.erb +0 -6684
- data/vendor/static-source/bootstrap.less +0 -1
- data/vendor/static-source/sprites.less +0 -6
- data/vendor/toolkit/twitter/bootstrap/alerts.less +0 -73
- data/vendor/toolkit/twitter/bootstrap/badges.less +0 -66
- data/vendor/toolkit/twitter/bootstrap/bootstrap.less +0 -55
- data/vendor/toolkit/twitter/bootstrap/breadcrumbs.less +0 -26
- data/vendor/toolkit/twitter/bootstrap/button-groups.less +0 -244
- data/vendor/toolkit/twitter/bootstrap/buttons.less +0 -166
- data/vendor/toolkit/twitter/bootstrap/carousel.less +0 -270
- data/vendor/toolkit/twitter/bootstrap/close.less +0 -34
- data/vendor/toolkit/twitter/bootstrap/code.less +0 -69
- data/vendor/toolkit/twitter/bootstrap/component-animations.less +0 -33
- data/vendor/toolkit/twitter/bootstrap/dropdowns.less +0 -216
- data/vendor/toolkit/twitter/bootstrap/forms.less +0 -613
- data/vendor/toolkit/twitter/bootstrap/glyphicons.less +0 -305
- data/vendor/toolkit/twitter/bootstrap/grid.less +0 -84
- data/vendor/toolkit/twitter/bootstrap/input-groups.less +0 -171
- data/vendor/toolkit/twitter/bootstrap/jumbotron.less +0 -54
- data/vendor/toolkit/twitter/bootstrap/labels.less +0 -64
- data/vendor/toolkit/twitter/bootstrap/list-group.less +0 -130
- data/vendor/toolkit/twitter/bootstrap/media.less +0 -66
- data/vendor/toolkit/twitter/bootstrap/mixins/alerts.less +0 -14
- data/vendor/toolkit/twitter/bootstrap/mixins/background-variant.less +0 -9
- data/vendor/toolkit/twitter/bootstrap/mixins/border-radius.less +0 -18
- data/vendor/toolkit/twitter/bootstrap/mixins/buttons.less +0 -65
- data/vendor/toolkit/twitter/bootstrap/mixins/center-block.less +0 -7
- data/vendor/toolkit/twitter/bootstrap/mixins/clearfix.less +0 -22
- data/vendor/toolkit/twitter/bootstrap/mixins/forms.less +0 -85
- data/vendor/toolkit/twitter/bootstrap/mixins/gradients.less +0 -59
- data/vendor/toolkit/twitter/bootstrap/mixins/grid-framework.less +0 -91
- data/vendor/toolkit/twitter/bootstrap/mixins/grid.less +0 -122
- data/vendor/toolkit/twitter/bootstrap/mixins/hide-text.less +0 -21
- data/vendor/toolkit/twitter/bootstrap/mixins/image.less +0 -33
- data/vendor/toolkit/twitter/bootstrap/mixins/labels.less +0 -12
- data/vendor/toolkit/twitter/bootstrap/mixins/list-group.less +0 -30
- data/vendor/toolkit/twitter/bootstrap/mixins/nav-divider.less +0 -10
- data/vendor/toolkit/twitter/bootstrap/mixins/nav-vertical-align.less +0 -9
- data/vendor/toolkit/twitter/bootstrap/mixins/opacity.less +0 -8
- data/vendor/toolkit/twitter/bootstrap/mixins/pagination.less +0 -24
- data/vendor/toolkit/twitter/bootstrap/mixins/panels.less +0 -24
- data/vendor/toolkit/twitter/bootstrap/mixins/progress-bar.less +0 -10
- data/vendor/toolkit/twitter/bootstrap/mixins/reset-filter.less +0 -8
- data/vendor/toolkit/twitter/bootstrap/mixins/reset-text.less +0 -18
- data/vendor/toolkit/twitter/bootstrap/mixins/resize.less +0 -6
- data/vendor/toolkit/twitter/bootstrap/mixins/responsive-visibility.less +0 -15
- data/vendor/toolkit/twitter/bootstrap/mixins/size.less +0 -10
- data/vendor/toolkit/twitter/bootstrap/mixins/tab-focus.less +0 -9
- data/vendor/toolkit/twitter/bootstrap/mixins/table-row.less +0 -28
- data/vendor/toolkit/twitter/bootstrap/mixins/text-emphasis.less +0 -9
- data/vendor/toolkit/twitter/bootstrap/mixins/text-overflow.less +0 -8
- data/vendor/toolkit/twitter/bootstrap/mixins/vendor-prefixes.less +0 -227
- data/vendor/toolkit/twitter/bootstrap/mixins.less +0 -40
- data/vendor/toolkit/twitter/bootstrap/modals.less +0 -150
- data/vendor/toolkit/twitter/bootstrap/navbar.less +0 -660
- data/vendor/toolkit/twitter/bootstrap/navs.less +0 -242
- data/vendor/toolkit/twitter/bootstrap/normalize.less +0 -424
- data/vendor/toolkit/twitter/bootstrap/pager.less +0 -54
- data/vendor/toolkit/twitter/bootstrap/pagination.less +0 -89
- data/vendor/toolkit/twitter/bootstrap/panels.less +0 -271
- data/vendor/toolkit/twitter/bootstrap/popovers.less +0 -131
- data/vendor/toolkit/twitter/bootstrap/print.less +0 -101
- data/vendor/toolkit/twitter/bootstrap/progress-bars.less +0 -87
- data/vendor/toolkit/twitter/bootstrap/responsive-embed.less +0 -35
- data/vendor/toolkit/twitter/bootstrap/responsive-utilities.less +0 -194
- data/vendor/toolkit/twitter/bootstrap/scaffolding.less +0 -161
- data/vendor/toolkit/twitter/bootstrap/tables.less +0 -234
- data/vendor/toolkit/twitter/bootstrap/theme.less +0 -291
- data/vendor/toolkit/twitter/bootstrap/thumbnails.less +0 -36
- data/vendor/toolkit/twitter/bootstrap/tooltip.less +0 -101
- data/vendor/toolkit/twitter/bootstrap/type.less +0 -302
- data/vendor/toolkit/twitter/bootstrap/utilities.less +0 -55
- data/vendor/toolkit/twitter/bootstrap/variables.less +0 -1751
- data/vendor/toolkit/twitter/bootstrap/wells.less +0 -29
- data/vendor/toolkit/twitter/bootstrap_base.less +0 -2
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<div class="container px-4 py-5" id="featured-3">
|
|
2
|
+
<h2 class="pb-2 border-bottom">Columns with icons</h2>
|
|
3
|
+
<div class="row g-4 py-5 row-cols-1 row-cols-lg-3">
|
|
4
|
+
<div class="feature col">
|
|
5
|
+
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-2 mb-3">
|
|
6
|
+
<svg class="bi" width="1em" height="1em" aria-hidden="true"><use xlink:href="#collection"></use></svg>
|
|
7
|
+
</div>
|
|
8
|
+
<h3 class="fs-2 text-body-emphasis">Featured title</h3>
|
|
9
|
+
<p>
|
|
10
|
+
Paragraph of text beneath the heading to explain the heading. We'll add onto it with another sentence and probably just keep going until we run out of words.
|
|
11
|
+
</p>
|
|
12
|
+
<a href="#" class="icon-link">
|
|
13
|
+
Call to action
|
|
14
|
+
<svg class="bi" aria-hidden="true"><use xlink:href="#chevron-right"></use></svg>
|
|
15
|
+
</a>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="feature col">
|
|
18
|
+
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-2 mb-3">
|
|
19
|
+
<svg class="bi" width="1em" height="1em" aria-hidden="true">
|
|
20
|
+
<use xlink:href="#people-circle"></use>
|
|
21
|
+
</svg>
|
|
22
|
+
</div>
|
|
23
|
+
<h3 class="fs-2 text-body-emphasis">Featured title</h3>
|
|
24
|
+
<p>
|
|
25
|
+
Paragraph of text beneath the heading to explain the heading. We'll add onto it with another sentence and probably just keep going until we run out of words.
|
|
26
|
+
</p>
|
|
27
|
+
<a href="#" class="icon-link">
|
|
28
|
+
Call to action
|
|
29
|
+
<svg class="bi" aria-hidden="true"><use xlink:href="#chevron-right"></use></svg>
|
|
30
|
+
</a>
|
|
31
|
+
</div>
|
|
32
|
+
<div class="feature col">
|
|
33
|
+
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-2 mb-3">
|
|
34
|
+
<svg class="bi" width="1em" height="1em" aria-hidden="true"><use xlink:href="#toggles2"></use></svg>
|
|
35
|
+
</div>
|
|
36
|
+
<h3 class="fs-2 text-body-emphasis">Featured title</h3>
|
|
37
|
+
<p>
|
|
38
|
+
Paragraph of text beneath the heading to explain the heading. We'll add onto it with another sentence and probably just keep going until we run out of words.
|
|
39
|
+
</p>
|
|
40
|
+
<a href="#" class="icon-link">
|
|
41
|
+
Call to action
|
|
42
|
+
<svg class="bi" aria-hidden="true"><use xlink:href="#chevron-right"></use></svg>
|
|
43
|
+
</a>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
<div class="container px-4 py-5" id="custom-cards">
|
|
2
|
+
<h2 class="pb-2 border-bottom">Custom cards</h2>
|
|
3
|
+
<div class="row row-cols-1 row-cols-lg-3 align-items-stretch g-4 py-5">
|
|
4
|
+
<div class="col">
|
|
5
|
+
<div class="card card-cover h-100 overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('unsplash-photo-1.jpg');">
|
|
6
|
+
<div class="d-flex flex-column h-100 p-5 pb-3 text-white text-shadow-1">
|
|
7
|
+
<h3 class="pt-5 mt-5 mb-4 display-6 lh-1 fw-bold">Short title, long jacket</h3>
|
|
8
|
+
<ul class="d-flex list-unstyled mt-auto">
|
|
9
|
+
<li class="me-auto">
|
|
10
|
+
<img src="https://github.com/twbs.png" alt="Bootstrap" width="32" height="32" class="rounded-circle border border-white">
|
|
11
|
+
</li>
|
|
12
|
+
<li class="d-flex align-items-center me-3">
|
|
13
|
+
<svg class="bi me-2" width="1em" height="1em" role="img" aria-label="Location">
|
|
14
|
+
<use xlink:href="#geo-fill"></use>
|
|
15
|
+
</svg>
|
|
16
|
+
<small>Earth</small>
|
|
17
|
+
</li>
|
|
18
|
+
<li class="d-flex align-items-center">
|
|
19
|
+
<svg class="bi me-2" width="1em" height="1em" role="img" aria-label="Duration">
|
|
20
|
+
<use xlink:href="#calendar3"></use>
|
|
21
|
+
</svg>
|
|
22
|
+
<small>3d</small>
|
|
23
|
+
</li>
|
|
24
|
+
</ul>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="col">
|
|
29
|
+
<div class="card card-cover h-100 overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('unsplash-photo-2.jpg');">
|
|
30
|
+
<div class="d-flex flex-column h-100 p-5 pb-3 text-white text-shadow-1">
|
|
31
|
+
<h3 class="pt-5 mt-5 mb-4 display-6 lh-1 fw-bold">
|
|
32
|
+
Much longer title that wraps to multiple lines
|
|
33
|
+
</h3>
|
|
34
|
+
<ul class="d-flex list-unstyled mt-auto">
|
|
35
|
+
<li class="me-auto">
|
|
36
|
+
<img src="https://github.com/twbs.png" alt="Bootstrap" width="32" height="32" class="rounded-circle border border-white">
|
|
37
|
+
</li>
|
|
38
|
+
<li class="d-flex align-items-center me-3">
|
|
39
|
+
<svg class="bi me-2" width="1em" height="1em" role="img" aria-label="Location">
|
|
40
|
+
<use xlink:href="#geo-fill"></use>
|
|
41
|
+
</svg>
|
|
42
|
+
<small>Pakistan</small>
|
|
43
|
+
</li>
|
|
44
|
+
<li class="d-flex align-items-center">
|
|
45
|
+
<svg class="bi me-2" width="1em" height="1em" role="img" aria-label="Duration">
|
|
46
|
+
<use xlink:href="#calendar3"></use>
|
|
47
|
+
</svg>
|
|
48
|
+
<small>4d</small>
|
|
49
|
+
</li>
|
|
50
|
+
</ul>
|
|
51
|
+
</div>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="col">
|
|
55
|
+
<div class="card card-cover h-100 overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('unsplash-photo-3.jpg');">
|
|
56
|
+
<div class="d-flex flex-column h-100 p-5 pb-3 text-shadow-1">
|
|
57
|
+
<h3 class="pt-5 mt-5 mb-4 display-6 lh-1 fw-bold">Another longer title belongs here</h3>
|
|
58
|
+
<ul class="d-flex list-unstyled mt-auto">
|
|
59
|
+
<li class="me-auto">
|
|
60
|
+
<img src="https://github.com/twbs.png" alt="Bootstrap" width="32" height="32" class="rounded-circle border border-white">
|
|
61
|
+
</li>
|
|
62
|
+
<li class="d-flex align-items-center me-3">
|
|
63
|
+
<svg class="bi me-2" width="1em" height="1em" role="img" aria-label="Location">
|
|
64
|
+
<use xlink:href="#geo-fill"></use>
|
|
65
|
+
</svg>
|
|
66
|
+
<small>California</small>
|
|
67
|
+
</li>
|
|
68
|
+
<li class="d-flex align-items-center">
|
|
69
|
+
<svg class="bi me-2" width="1em" height="1em" role="img" aria-label="Duration">
|
|
70
|
+
<use xlink:href="#calendar3"></use>
|
|
71
|
+
</svg>
|
|
72
|
+
<small>5d</small>
|
|
73
|
+
</li>
|
|
74
|
+
</ul>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</div>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<div class="container px-4 py-5" id="hanging-icons">
|
|
2
|
+
<h2 class="pb-2 border-bottom">Hanging icons</h2>
|
|
3
|
+
<div class="row g-4 py-5 row-cols-1 row-cols-lg-3">
|
|
4
|
+
<div class="col d-flex align-items-start">
|
|
5
|
+
<div class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
|
|
6
|
+
<svg class="bi" width="1em" height="1em" aria-hidden="true"><use xlink:href="#toggles2"></use></svg>
|
|
7
|
+
</div>
|
|
8
|
+
<div>
|
|
9
|
+
<h3 class="fs-2 text-body-emphasis">Featured title</h3>
|
|
10
|
+
<p>
|
|
11
|
+
Paragraph of text beneath the heading to explain the heading. We'll add onto it with another sentence and probably just keep going until we run out of words.
|
|
12
|
+
</p>
|
|
13
|
+
<a href="#" class="btn btn-primary">Primary button</a>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="col d-flex align-items-start">
|
|
17
|
+
<div class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
|
|
18
|
+
<svg class="bi" width="1em" height="1em" aria-hidden="true"><use xlink:href="#cpu-fill"></use></svg>
|
|
19
|
+
</div>
|
|
20
|
+
<div>
|
|
21
|
+
<h3 class="fs-2 text-body-emphasis">Featured title</h3>
|
|
22
|
+
<p>
|
|
23
|
+
Paragraph of text beneath the heading to explain the heading. We'll add onto it with another sentence and probably just keep going until we run out of words.
|
|
24
|
+
</p>
|
|
25
|
+
<a href="#" class="btn btn-primary">Primary button</a>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="col d-flex align-items-start">
|
|
29
|
+
<div class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
|
|
30
|
+
<svg class="bi" width="1em" height="1em" aria-hidden="true"><use xlink:href="#tools"></use></svg>
|
|
31
|
+
</div>
|
|
32
|
+
<div>
|
|
33
|
+
<h3 class="fs-2 text-body-emphasis">Featured title</h3>
|
|
34
|
+
<p>
|
|
35
|
+
Paragraph of text beneath the heading to explain the heading. We'll add onto it with another sentence and probably just keep going until we run out of words.
|
|
36
|
+
</p>
|
|
37
|
+
<a href="#" class="btn btn-primary">Primary button</a>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<div class="container px-4 py-5" id="icon-grid">
|
|
2
|
+
<h2 class="pb-2 border-bottom">Icon grid</h2>
|
|
3
|
+
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 g-4 py-5">
|
|
4
|
+
<div class="col d-flex align-items-start">
|
|
5
|
+
<svg class="bi text-body-secondary flex-shrink-0 me-3" width="1.75em" height="1.75em" aria-hidden="true">
|
|
6
|
+
<use xlink:href="#bootstrap"></use>
|
|
7
|
+
</svg>
|
|
8
|
+
<div>
|
|
9
|
+
<h3 class="fw-bold mb-0 fs-4 text-body-emphasis">Featured title</h3>
|
|
10
|
+
<p>Paragraph of text beneath the heading to explain the heading.</p>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="col d-flex align-items-start">
|
|
14
|
+
<svg class="bi text-body-secondary flex-shrink-0 me-3" width="1.75em" height="1.75em" aria-hidden="true">
|
|
15
|
+
<use xlink:href="#cpu-fill"></use>
|
|
16
|
+
</svg>
|
|
17
|
+
<div>
|
|
18
|
+
<h3 class="fw-bold mb-0 fs-4 text-body-emphasis">Featured title</h3>
|
|
19
|
+
<p>Paragraph of text beneath the heading to explain the heading.</p>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="col d-flex align-items-start">
|
|
23
|
+
<svg class="bi text-body-secondary flex-shrink-0 me-3" width="1.75em" height="1.75em" aria-hidden="true">
|
|
24
|
+
<use xlink:href="#calendar3"></use>
|
|
25
|
+
</svg>
|
|
26
|
+
<div>
|
|
27
|
+
<h3 class="fw-bold mb-0 fs-4 text-body-emphasis">Featured title</h3>
|
|
28
|
+
<p>Paragraph of text beneath the heading to explain the heading.</p>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
<div class="col d-flex align-items-start">
|
|
32
|
+
<svg class="bi text-body-secondary flex-shrink-0 me-3" width="1.75em" height="1.75em" aria-hidden="true">
|
|
33
|
+
<use xlink:href="#home"></use>
|
|
34
|
+
</svg>
|
|
35
|
+
<div>
|
|
36
|
+
<h3 class="fw-bold mb-0 fs-4 text-body-emphasis">Featured title</h3>
|
|
37
|
+
<p>Paragraph of text beneath the heading to explain the heading.</p>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
<div class="col d-flex align-items-start">
|
|
41
|
+
<svg class="bi text-body-secondary flex-shrink-0 me-3" width="1.75em" height="1.75em" aria-hidden="true">
|
|
42
|
+
<use xlink:href="#speedometer2"></use>
|
|
43
|
+
</svg>
|
|
44
|
+
<div>
|
|
45
|
+
<h3 class="fw-bold mb-0 fs-4 text-body-emphasis">Featured title</h3>
|
|
46
|
+
<p>Paragraph of text beneath the heading to explain the heading.</p>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
<div class="col d-flex align-items-start">
|
|
50
|
+
<svg class="bi text-body-secondary flex-shrink-0 me-3" width="1.75em" height="1.75em" aria-hidden="true">
|
|
51
|
+
<use xlink:href="#toggles2"></use>
|
|
52
|
+
</svg>
|
|
53
|
+
<div>
|
|
54
|
+
<h3 class="fw-bold mb-0 fs-4 text-body-emphasis">Featured title</h3>
|
|
55
|
+
<p>Paragraph of text beneath the heading to explain the heading.</p>
|
|
56
|
+
</div>
|
|
57
|
+
</div>
|
|
58
|
+
<div class="col d-flex align-items-start">
|
|
59
|
+
<svg class="bi text-body-secondary flex-shrink-0 me-3" width="1.75em" height="1.75em" aria-hidden="true">
|
|
60
|
+
<use xlink:href="#geo-fill"></use>
|
|
61
|
+
</svg>
|
|
62
|
+
<div>
|
|
63
|
+
<h3 class="fw-bold mb-0 fs-4 text-body-emphasis">Featured title</h3>
|
|
64
|
+
<p>Paragraph of text beneath the heading to explain the heading.</p>
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
<div class="col d-flex align-items-start">
|
|
68
|
+
<svg class="bi text-body-secondary flex-shrink-0 me-3" width="1.75em" height="1.75em" aria-hidden="true">
|
|
69
|
+
<use xlink:href="#tools"></use>
|
|
70
|
+
</svg>
|
|
71
|
+
<div>
|
|
72
|
+
<h3 class="fw-bold mb-0 fs-4 text-body-emphasis">Featured title</h3>
|
|
73
|
+
<p>Paragraph of text beneath the heading to explain the heading.</p>
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</div>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<div class="container px-4 py-5">
|
|
2
|
+
<h2 class="pb-2 border-bottom">Features with title</h2>
|
|
3
|
+
<div class="row row-cols-1 row-cols-md-2 align-items-md-center g-5 py-5">
|
|
4
|
+
<div class="col d-flex flex-column align-items-start gap-2">
|
|
5
|
+
<h2 class="fw-bold text-body-emphasis">Left-aligned title explaining these awesome features</h2>
|
|
6
|
+
<p class="text-body-secondary">
|
|
7
|
+
Paragraph of text beneath the heading to explain the heading. We'll add onto it with another sentence and probably just keep going until we run out of words.
|
|
8
|
+
</p>
|
|
9
|
+
<a href="#" class="btn btn-primary btn-lg">Primary button</a>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="col">
|
|
12
|
+
<div class="row row-cols-1 row-cols-sm-2 g-4">
|
|
13
|
+
<div class="col d-flex flex-column gap-2">
|
|
14
|
+
<div class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3">
|
|
15
|
+
<svg class="bi" width="1em" height="1em" aria-hidden="true">
|
|
16
|
+
<use xlink:href="#collection"></use>
|
|
17
|
+
</svg>
|
|
18
|
+
</div>
|
|
19
|
+
<h4 class="fw-semibold mb-0 text-body-emphasis">Featured title</h4>
|
|
20
|
+
<p class="text-body-secondary">Paragraph of text beneath the heading to explain the heading.</p>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="col d-flex flex-column gap-2">
|
|
23
|
+
<div class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3">
|
|
24
|
+
<svg class="bi" width="1em" height="1em" aria-hidden="true">
|
|
25
|
+
<use xlink:href="#gear-fill"></use>
|
|
26
|
+
</svg>
|
|
27
|
+
</div>
|
|
28
|
+
<h4 class="fw-semibold mb-0 text-body-emphasis">Featured title</h4>
|
|
29
|
+
<p class="text-body-secondary">Paragraph of text beneath the heading to explain the heading.</p>
|
|
30
|
+
</div>
|
|
31
|
+
<div class="col d-flex flex-column gap-2">
|
|
32
|
+
<div class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3">
|
|
33
|
+
<svg class="bi" width="1em" height="1em" aria-hidden="true">
|
|
34
|
+
<use xlink:href="#speedometer"></use>
|
|
35
|
+
</svg>
|
|
36
|
+
</div>
|
|
37
|
+
<h4 class="fw-semibold mb-0 text-body-emphasis">Featured title</h4>
|
|
38
|
+
<p class="text-body-secondary">Paragraph of text beneath the heading to explain the heading.</p>
|
|
39
|
+
</div>
|
|
40
|
+
<div class="col d-flex flex-column gap-2">
|
|
41
|
+
<div class="feature-icon-small d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-4 rounded-3">
|
|
42
|
+
<svg class="bi" width="1em" height="1em" aria-hidden="true"><use xlink:href="#table"></use></svg>
|
|
43
|
+
</div>
|
|
44
|
+
<h4 class="fw-semibold mb-0 text-body-emphasis">Featured title</h4>
|
|
45
|
+
<p class="text-body-secondary">Paragraph of text beneath the heading to explain the heading.</p>
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<div class="container">
|
|
2
|
+
<footer class="row row-cols-1 row-cols-sm-2 row-cols-md-5 py-5 my-5 border-top">
|
|
3
|
+
<div class="col mb-3">
|
|
4
|
+
<a href="/" class="d-flex align-items-center mb-3 link-body-emphasis text-decoration-none" aria-label="Bootstrap">
|
|
5
|
+
<svg class="bi me-2" width="40" height="32" aria-hidden="true">
|
|
6
|
+
<use xlink:href="#bootstrap"></use>
|
|
7
|
+
</svg>
|
|
8
|
+
</a>
|
|
9
|
+
<p class="text-body-secondary">© 2025</p>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="col mb-3"></div>
|
|
12
|
+
<div class="col mb-3">
|
|
13
|
+
<h5>Section</h5>
|
|
14
|
+
<ul class="nav flex-column">
|
|
15
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Home</a></li>
|
|
16
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Features</a></li>
|
|
17
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Pricing</a></li>
|
|
18
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">FAQs</a></li>
|
|
19
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">About</a></li>
|
|
20
|
+
</ul>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="col mb-3">
|
|
23
|
+
<h5>Section</h5>
|
|
24
|
+
<ul class="nav flex-column">
|
|
25
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Home</a></li>
|
|
26
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Features</a></li>
|
|
27
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Pricing</a></li>
|
|
28
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">FAQs</a></li>
|
|
29
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">About</a></li>
|
|
30
|
+
</ul>
|
|
31
|
+
</div>
|
|
32
|
+
<div class="col mb-3">
|
|
33
|
+
<h5>Section</h5>
|
|
34
|
+
<ul class="nav flex-column">
|
|
35
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Home</a></li>
|
|
36
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Features</a></li>
|
|
37
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Pricing</a></li>
|
|
38
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">FAQs</a></li>
|
|
39
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">About</a></li>
|
|
40
|
+
</ul>
|
|
41
|
+
</div>
|
|
42
|
+
</footer>
|
|
43
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<div class="container">
|
|
2
|
+
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
|
|
3
|
+
<p class="col-md-4 mb-0 text-body-secondary">© 2025 Company, Inc</p>
|
|
4
|
+
<a href="/" class="col-md-4 d-flex align-items-center justify-content-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none" aria-label="Bootstrap">
|
|
5
|
+
<svg class="bi me-2" width="40" height="32" aria-hidden="true"><use xlink:href="#bootstrap"></use></svg>
|
|
6
|
+
</a>
|
|
7
|
+
<ul class="nav col-md-4 justify-content-end">
|
|
8
|
+
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Home</a></li>
|
|
9
|
+
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Features</a></li>
|
|
10
|
+
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Pricing</a></li>
|
|
11
|
+
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">FAQs</a></li>
|
|
12
|
+
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">About</a></li>
|
|
13
|
+
</ul>
|
|
14
|
+
</footer>
|
|
15
|
+
</div>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<div class="container">
|
|
2
|
+
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
|
|
3
|
+
<div class="col-md-4 d-flex align-items-center">
|
|
4
|
+
<a href="/" class="mb-3 me-2 mb-md-0 text-body-secondary text-decoration-none lh-1" aria-label="Bootstrap">
|
|
5
|
+
<svg class="bi" width="30" height="24" aria-hidden="true"><use xlink:href="#bootstrap"></use></svg>
|
|
6
|
+
</a>
|
|
7
|
+
<span class="mb-3 mb-md-0 text-body-secondary">© 2025 Company, Inc</span>
|
|
8
|
+
</div>
|
|
9
|
+
<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
|
|
10
|
+
<li class="ms-3">
|
|
11
|
+
<a class="text-body-secondary" href="#" aria-label="Instagram">
|
|
12
|
+
<svg class="bi" width="24" height="24" aria-hidden="true"><use xlink:href="#instagram"></use></svg>
|
|
13
|
+
</a>
|
|
14
|
+
</li>
|
|
15
|
+
<li class="ms-3">
|
|
16
|
+
<a class="text-body-secondary" href="#" aria-label="Facebook">
|
|
17
|
+
<svg class="bi" width="24" height="24"><use xlink:href="#facebook"></use></svg>
|
|
18
|
+
</a>
|
|
19
|
+
</li>
|
|
20
|
+
</ul>
|
|
21
|
+
</footer>
|
|
22
|
+
</div>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<div class="container">
|
|
2
|
+
<footer class="py-3 my-4">
|
|
3
|
+
<ul class="nav justify-content-center border-bottom pb-3 mb-3">
|
|
4
|
+
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Home</a></li>
|
|
5
|
+
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Features</a></li>
|
|
6
|
+
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Pricing</a></li>
|
|
7
|
+
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">FAQs</a></li>
|
|
8
|
+
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">About</a></li>
|
|
9
|
+
</ul>
|
|
10
|
+
<p class="text-center text-body-secondary">© 2025 Company, Inc</p>
|
|
11
|
+
</footer>
|
|
12
|
+
</div>
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
<div class="container">
|
|
2
|
+
<footer class="py-5">
|
|
3
|
+
<div class="row">
|
|
4
|
+
<div class="col-6 col-md-2 mb-3">
|
|
5
|
+
<h5>Section</h5>
|
|
6
|
+
<ul class="nav flex-column">
|
|
7
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Home</a></li>
|
|
8
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Features</a></li>
|
|
9
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Pricing</a></li>
|
|
10
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">FAQs</a></li>
|
|
11
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">About</a></li>
|
|
12
|
+
</ul>
|
|
13
|
+
</div>
|
|
14
|
+
<div class="col-6 col-md-2 mb-3">
|
|
15
|
+
<h5>Section</h5>
|
|
16
|
+
<ul class="nav flex-column">
|
|
17
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Home</a></li>
|
|
18
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Features</a></li>
|
|
19
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Pricing</a></li>
|
|
20
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">FAQs</a></li>
|
|
21
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">About</a></li>
|
|
22
|
+
</ul>
|
|
23
|
+
</div>
|
|
24
|
+
<div class="col-6 col-md-2 mb-3">
|
|
25
|
+
<h5>Section</h5>
|
|
26
|
+
<ul class="nav flex-column">
|
|
27
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Home</a></li>
|
|
28
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Features</a></li>
|
|
29
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Pricing</a></li>
|
|
30
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">FAQs</a></li>
|
|
31
|
+
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">About</a></li>
|
|
32
|
+
</ul>
|
|
33
|
+
</div>
|
|
34
|
+
<div class="col-md-5 offset-md-1 mb-3">
|
|
35
|
+
<form>
|
|
36
|
+
<h5>Subscribe to our newsletter</h5>
|
|
37
|
+
<p>Monthly digest of what's new and exciting from us.</p>
|
|
38
|
+
<div class="d-flex flex-column flex-sm-row w-100 gap-2">
|
|
39
|
+
<label for="newsletter1" class="visually-hidden">Email address</label>
|
|
40
|
+
<input id="newsletter1" type="email" class="form-control" placeholder="Email address">
|
|
41
|
+
<button class="btn btn-primary" type="button">Subscribe</button>
|
|
42
|
+
</div>
|
|
43
|
+
</form>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
<div class="d-flex flex-column flex-sm-row justify-content-between py-4 my-4 border-top">
|
|
47
|
+
<p>© 2025 Company, Inc. All rights reserved.</p>
|
|
48
|
+
<ul class="list-unstyled d-flex">
|
|
49
|
+
<li class="ms-3">
|
|
50
|
+
<a class="link-body-emphasis" href="#" aria-label="Instagram">
|
|
51
|
+
<svg class="bi" width="24" height="24"><use xlink:href="#instagram"></use></svg>
|
|
52
|
+
</a>
|
|
53
|
+
</li>
|
|
54
|
+
<li class="ms-3">
|
|
55
|
+
<a class="link-body-emphasis" href="#" aria-label="Facebook">
|
|
56
|
+
<svg class="bi" width="24" height="24" aria-hidden="true"><use xlink:href="#facebook"></use></svg>
|
|
57
|
+
</a>
|
|
58
|
+
</li>
|
|
59
|
+
</ul>
|
|
60
|
+
</div>
|
|
61
|
+
</footer>
|
|
62
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<div class="container">
|
|
2
|
+
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
|
|
3
|
+
<a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
|
|
4
|
+
<svg class="bi me-2" width="40" height="32" aria-hidden="true"><use xlink:href="#bootstrap"></use></svg>
|
|
5
|
+
<span class="fs-4">Simple header</span>
|
|
6
|
+
</a>
|
|
7
|
+
<ul class="nav nav-pills">
|
|
8
|
+
<li class="nav-item"><a href="#" class="nav-link active" aria-current="page">Home</a></li>
|
|
9
|
+
<li class="nav-item"><a href="#" class="nav-link">Features</a></li>
|
|
10
|
+
<li class="nav-item"><a href="#" class="nav-link">Pricing</a></li>
|
|
11
|
+
<li class="nav-item"><a href="#" class="nav-link">FAQs</a></li>
|
|
12
|
+
<li class="nav-item"><a href="#" class="nav-link">About</a></li>
|
|
13
|
+
</ul>
|
|
14
|
+
</header>
|
|
15
|
+
</div>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<header>
|
|
2
|
+
<div class="px-3 py-2 text-bg-dark border-bottom">
|
|
3
|
+
<div class="container">
|
|
4
|
+
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
|
|
5
|
+
<a href="/" class="d-flex align-items-center my-2 my-lg-0 me-lg-auto text-white text-decoration-none">
|
|
6
|
+
<svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap">
|
|
7
|
+
<use xlink:href="#bootstrap"></use>
|
|
8
|
+
</svg>
|
|
9
|
+
</a>
|
|
10
|
+
<ul class="nav col-12 col-lg-auto my-2 justify-content-center my-md-0 text-small">
|
|
11
|
+
<li>
|
|
12
|
+
<a href="#" class="nav-link text-secondary">
|
|
13
|
+
<svg class="bi d-block mx-auto mb-1" width="24" height="24" aria-hidden="true">
|
|
14
|
+
<use xlink:href="#home"></use>
|
|
15
|
+
</svg>
|
|
16
|
+
Home
|
|
17
|
+
</a>
|
|
18
|
+
</li>
|
|
19
|
+
<li>
|
|
20
|
+
<a href="#" class="nav-link text-white">
|
|
21
|
+
<svg class="bi d-block mx-auto mb-1" width="24" height="24" aria-hidden="true">
|
|
22
|
+
<use xlink:href="#speedometer2"></use>
|
|
23
|
+
</svg>
|
|
24
|
+
Dashboard
|
|
25
|
+
</a>
|
|
26
|
+
</li>
|
|
27
|
+
<li>
|
|
28
|
+
<a href="#" class="nav-link text-white">
|
|
29
|
+
<svg class="bi d-block mx-auto mb-1" width="24" height="24" aria-hidden="true">
|
|
30
|
+
<use xlink:href="#table"></use>
|
|
31
|
+
</svg>
|
|
32
|
+
Orders
|
|
33
|
+
</a>
|
|
34
|
+
</li>
|
|
35
|
+
<li>
|
|
36
|
+
<a href="#" class="nav-link text-white">
|
|
37
|
+
<svg class="bi d-block mx-auto mb-1" width="24" height="24" aria-hidden="true">
|
|
38
|
+
<use xlink:href="#grid"></use>
|
|
39
|
+
</svg>
|
|
40
|
+
Products
|
|
41
|
+
</a>
|
|
42
|
+
</li>
|
|
43
|
+
<li>
|
|
44
|
+
<a href="#" class="nav-link text-white">
|
|
45
|
+
<svg class="bi d-block mx-auto mb-1" width="24" height="24" aria-hidden="true">
|
|
46
|
+
<use xlink:href="#people-circle"></use>
|
|
47
|
+
</svg>
|
|
48
|
+
Customers
|
|
49
|
+
</a>
|
|
50
|
+
</li>
|
|
51
|
+
</ul>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
<div class="px-3 py-2 border-bottom mb-3">
|
|
56
|
+
<div class="container d-flex flex-wrap justify-content-center">
|
|
57
|
+
<form class="col-12 col-lg-auto mb-2 mb-lg-0 me-lg-auto" role="search">
|
|
58
|
+
<input type="search" class="form-control" placeholder="Search..." aria-label="Search">
|
|
59
|
+
</form>
|
|
60
|
+
<div class="text-end">
|
|
61
|
+
<button type="button" class="btn btn-light text-dark me-2">Login</button>
|
|
62
|
+
<button type="button" class="btn btn-primary">Sign-up</button>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
66
|
+
</header>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<header class="p-3 text-bg-dark">
|
|
2
|
+
<div class="container">
|
|
3
|
+
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
|
|
4
|
+
<a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-white text-decoration-none">
|
|
5
|
+
<svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap">
|
|
6
|
+
<use xlink:href="#bootstrap"></use>
|
|
7
|
+
</svg>
|
|
8
|
+
</a>
|
|
9
|
+
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
|
|
10
|
+
<li><a href="#" class="nav-link px-2 text-secondary">Home</a></li>
|
|
11
|
+
<li><a href="#" class="nav-link px-2 text-white">Features</a></li>
|
|
12
|
+
<li><a href="#" class="nav-link px-2 text-white">Pricing</a></li>
|
|
13
|
+
<li><a href="#" class="nav-link px-2 text-white">FAQs</a></li>
|
|
14
|
+
<li><a href="#" class="nav-link px-2 text-white">About</a></li>
|
|
15
|
+
</ul>
|
|
16
|
+
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3" role="search">
|
|
17
|
+
<input type="search" class="form-control form-control-dark text-bg-dark" placeholder="Search..." aria-label="Search">
|
|
18
|
+
</form>
|
|
19
|
+
<div class="text-end">
|
|
20
|
+
<button type="button" class="btn btn-outline-light me-2">Login</button>
|
|
21
|
+
<button type="button" class="btn btn-warning">Sign-up</button>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</header>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<nav class="py-2 bg-body-tertiary border-bottom">
|
|
2
|
+
<div class="container d-flex flex-wrap">
|
|
3
|
+
<ul class="nav me-auto">
|
|
4
|
+
<li class="nav-item">
|
|
5
|
+
<a href="#" class="nav-link link-body-emphasis px-2 active" aria-current="page">Home</a>
|
|
6
|
+
</li>
|
|
7
|
+
<li class="nav-item"><a href="#" class="nav-link link-body-emphasis px-2">Features</a></li>
|
|
8
|
+
<li class="nav-item"><a href="#" class="nav-link link-body-emphasis px-2">Pricing</a></li>
|
|
9
|
+
<li class="nav-item"><a href="#" class="nav-link link-body-emphasis px-2">FAQs</a></li>
|
|
10
|
+
<li class="nav-item"><a href="#" class="nav-link link-body-emphasis px-2">About</a></li>
|
|
11
|
+
</ul>
|
|
12
|
+
<ul class="nav">
|
|
13
|
+
<li class="nav-item"><a href="#" class="nav-link link-body-emphasis px-2">Login</a></li>
|
|
14
|
+
<li class="nav-item"><a href="#" class="nav-link link-body-emphasis px-2">Sign up</a></li>
|
|
15
|
+
</ul>
|
|
16
|
+
</div>
|
|
17
|
+
</nav>
|
|
18
|
+
<header class="py-3 mb-4 border-bottom">
|
|
19
|
+
<div class="container d-flex flex-wrap justify-content-center">
|
|
20
|
+
<a href="/" class="d-flex align-items-center mb-3 mb-lg-0 me-lg-auto link-body-emphasis text-decoration-none">
|
|
21
|
+
<svg class="bi me-2" width="40" height="32" aria-hidden="true"><use xlink:href="#bootstrap"></use></svg>
|
|
22
|
+
<span class="fs-4">Double header</span>
|
|
23
|
+
</a>
|
|
24
|
+
<form class="col-12 col-lg-auto mb-3 mb-lg-0" role="search">
|
|
25
|
+
<input type="search" class="form-control" placeholder="Search..." aria-label="Search">
|
|
26
|
+
</form>
|
|
27
|
+
</div>
|
|
28
|
+
</header>
|