` or a block level element (e.g., ``) with the `.blockquote-footer` class. Be sure to wrap the name of the source work in `` as well.
-
-{{< example >}}
-
-
- A well-known quote, contained in a blockquote element.
-
-
-
-{{< /example >}}
-
-### Alignment
-
-Use text utilities as needed to change the alignment of your blockquote.
-
-{{< example >}}
-
-
- A well-known quote, contained in a blockquote element.
-
-
-
-{{< /example >}}
-
-{{< example >}}
-
-
- A well-known quote, contained in a blockquote element.
-
-
-
-{{< /example >}}
-
-## Lists
-
-### Unstyled
-
-Remove the default `list-style` and left margin on list items (immediate children only). **This only applies to immediate children list items**, meaning you will need to add the class for any nested lists as well.
-
-{{< example >}}
-
- - This is a list.
- - It appears completely unstyled.
- - Structurally, it's still a list.
- - However, this style only applies to immediate child elements.
- - Nested lists:
-
- - are unaffected by this style
- - will still show a bullet
- - and have appropriate left margin
-
-
- - This may still come in handy in some situations.
-
-{{< /example >}}
-
-### Inline
-
-Remove a list's bullets and apply some light `margin` with a combination of two classes, `.list-inline` and `.list-inline-item`.
-
-{{< example >}}
-
- - This is a list item.
- - And another one.
- - But they're displayed inline.
-
-{{< /example >}}
-
-### Description list alignment
-
-Align terms and descriptions horizontally by using our grid system's predefined classes (or semantic mixins). For longer terms, you can optionally add a `.text-truncate` class to truncate the text with an ellipsis.
-
-{{< example >}}
-
- - Description lists
- - A description list is perfect for defining terms.
-
- - Term
- -
-
Definition for the term.
- And some more placeholder definition text.
-
-
- - Another term
- - This definition is short, so no extra paragraphs or anything.
-
- - Truncated term is truncated
- - This can be useful when space is tight. Adds an ellipsis at the end.
-
- - Nesting
- -
-
- - Nested definition list
- - I heard you like definition lists. Let me put a definition list inside your definition list.
-
-
-
-{{< /example >}}
-
-## Responsive font sizes
-
-In Bootstrap 5, we've enabled responsive font sizes by default, allowing text to scale more naturally across device and viewport sizes. Have a look at the [RFS page]({{< docsref "/getting-started/rfs" >}}) to find out how this works.
diff --git a/site/content/docs/5.0/customize/color.md b/site/content/docs/5.0/customize/color.md
deleted file mode 100644
index 452b3d77c..000000000
--- a/site/content/docs/5.0/customize/color.md
+++ /dev/null
@@ -1,108 +0,0 @@
----
-layout: docs
-title: Color
-description: Bootstrap is supported by an extensive color system that themes our styles and components. This enables more comprehensive customization and extension for any project.
-group: customize
-toc: true
----
-
-## Theme colors
-
-We use a subset of all colors to create a smaller color palette for generating color schemes, also available as Sass variables and a Sass map in Bootstrap's `scss/_variables.scss` file.
-
-
- {{< theme-colors.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- {{ end -}}
- {{< /theme-colors.inline >}}
-
-
-All these colors are available as a Sass map, `$theme-colors`.
-
-{{< scss-docs name="theme-colors-map" file="scss/_variables.scss" >}}
-
-Check out [our Sass maps and loops docs]({{< docsref "/customize/sass#maps-and-loops" >}}) for how to modify these colors.
-
-## All colors
-
-All Bootstrap colors are available as Sass variables and a Sass map in `scss/_variables.scss` file. To avoid increased file sizes, we don't create text or background color classes for each of these variables. Instead, we choose a subset of these colors for a [theme palette](#theme-colors).
-
-Be sure to monitor contrast ratios as you customize colors. As shown below, we've added three contrast ratios to each of the main colors—one for the swatch's current colors, one for against white, and one for against black.
-
-
- {{< theme-colors.inline >}}
- {{- range $color := $.Site.Data.colors }}
- {{- if (and (not (eq $color.name "white")) (not (eq $color.name "gray")) (not (eq $color.name "gray-dark"))) }}
-
-
- ${{ $color.name }}
- {{ $color.hex }}
-
- {{ range (seq 100 100 900) }}
-
${{ $color.name }}-{{ . }}
- {{ end }}
-
- {{ end -}}
- {{ end -}}
-
-
-
- $gray-500
- #adb5bd
-
- {{- range $.Site.Data.grays }}
-
$gray-{{ .name }}
- {{ end -}}
-
- {{< /theme-colors.inline >}}
-
-
-
- $black
- #000
-
-
- $white
- #fff
-
-
-
-
-### Notes on Sass
-
-Sass cannot programmatically generate variables, so we manually created variables for every tint and shade ourselves. We specify the midpoint value (e.g., `$blue-500`) and use custom color functions to tint (lighten) or shade (darken) our colors via Sass's `mix()` color function.
-
-Using `mix()` is not the same as `lighten()` and `darken()`—the former blends the specified color with white or black, while the latter only adjusts the lightness value of each color. The result is a much more complete suite of colors, as [shown in this CodePen demo](https://codepen.io/emdeoh/pen/zYOQOPB).
-
-Our `tint-color()` and `shade-color()` functions use `mix()` alongside our `$theme-color-interval` variable, which specifies a stepped percentage value for each mixed color we produce. See the `scss/_functions.scss` and `scss/_variables.scss` files for the full source code.
-
-## Color Sass maps
-
-Bootstrap's source Sass files include three maps to help you quickly and easily loop over a list of colors and their hex values.
-
-- `$colors` lists all our available base (`500`) colors
-- `$theme-colors` lists all semantically named theme colors (shown below)
-- `$grays` lists all tints and shades of gray
-
-Within `scss/_variables.scss`, you'll find Bootstrap's color variables and Sass map. Here's an example of the `$colors` Sass map:
-
-{{< scss-docs name="colors-map" file="scss/_variables.scss" >}}
-
-Add, remove, or modify values within the map to update how they're used in many other components. Unfortunately at this time, not _every_ component utilizes this Sass map. Future updates will strive to improve upon this. Until then, plan on making use of the `${color}` variables and this Sass map.
-
-### Example
-
-Here's how you can use these in your Sass:
-
-```scss
-.alpha { color: $purple; }
-.beta {
- color: $yellow-300;
- background-color: $indigo-900;
-}
-```
-
-[Color utility classes]({{< docsref "/utilities/colors" >}}) are also available for setting `color` and `background-color` using the `500` color values.
diff --git a/site/content/docs/5.0/customize/components.md b/site/content/docs/5.0/customize/components.md
deleted file mode 100644
index b512a9036..000000000
--- a/site/content/docs/5.0/customize/components.md
+++ /dev/null
@@ -1,77 +0,0 @@
----
-layout: docs
-title: Components
-description: Learn how and why we build nearly all our components responsively and with base and modifier classes.
-group: customize
-toc: true
----
-
-## Base classes
-
-Bootstrap's components are largely built with a base-modifier nomenclature. We group as many shared properties as possible into a base class, like `.btn`, and then group individual styles for each variant into modifier classes, like `.btn-primary` or `.btn-success`.
-
-To build our modifier classes, we use Sass's `@each` loops to iterate over a Sass map. This is especially helpful for generating variants of a component by our `$theme-colors` and creating responsive variants for each breakpoint. As you customize these Sass maps and recompile, you'll automatically see your changes reflected in these loops.
-
-Check out [our Sass maps and loops docs]({{< docsref "/customize/sass#maps-and-loops" >}}) for how to customize these loops and extend Bootstrap's base-modifier approach to your own code.
-
-## Modifiers
-
-Many of Bootstrap's components are built with a base-modifier class approach. This means the bulk of the styling is contained to a base class (e.g., `.btn`) while style variations are confined to modifier classes (e.g., `.btn-danger`). These modifier classes are built from the `$theme-colors` map to make customizing the number and name of our modifier classes.
-
-Here are two examples of how we loop over the `$theme-colors` map to generate modifiers to the `.alert` and `.list-group` components.
-
-{{< scss-docs name="alert-modifiers" file="scss/_alert.scss" >}}
-
-{{< scss-docs name="list-group-modifiers" file="scss/_list-group.scss" >}}
-
-## Responsive
-
-These Sass loops aren't limited to color maps, either. You can also generate responsive variations of your components. Take for example our responsive alignment of the dropdowns where we mix an `@each` loop for the `$grid-breakpoints` Sass map with a media query include.
-
-{{< scss-docs name="responsive-breakpoints" file="scss/_dropdown.scss" >}}
-
-Should you modify your `$grid-breakpoints`, your changes will apply to all the loops iterating over that map.
-
-{{< scss-docs name="grid-breakpoints" file="scss/_variables.scss" >}}
-
-For more information and examples on how to modify our Sass maps and variables, please refer to [the Sass section of the Grid documentation]({{< docsref "/layout/grid#sass" >}}).
-
-## Creating your own
-
-We encourage you to adopt these guidelines when building with Bootstrap to create your own components. We've extended this approach ourselves to the custom components in our documentation and examples. Components like our callouts are built just like our provided components with base and modifier classes.
-
-
-
- This is a callout. We built it custom for our docs so our messages to you stand out. It has three variants via modifier classes.
-
-
-
-```html
-...
-```
-
-In your CSS, you'd have something like the following where the bulk of the styling is done via `.callout`. Then, the unique styles between each variant is controlled via modifier class.
-
-```scss
-// Base class
-.callout {}
-
-// Modifier classes
-.callout-info {}
-.callout-warning {}
-.callout-danger {}
-```
-
-For the callouts, that unique styling is just a `border-left-color`. When you combine that base class with one of those modifier classes, you get your complete component family:
-
-{{< callout info >}}
-**This is an info callout.** Example text to show it in action.
-{{< /callout >}}
-
-{{< callout warning >}}
-**This is a warning callout.** Example text to show it in action.
-{{< /callout >}}
-
-{{< callout danger >}}
-**This is a danger callout.** Example text to show it in action.
-{{< /callout >}}
diff --git a/site/content/docs/5.0/customize/css-variables.md b/site/content/docs/5.0/customize/css-variables.md
deleted file mode 100644
index a2d0f33b7..000000000
--- a/site/content/docs/5.0/customize/css-variables.md
+++ /dev/null
@@ -1,50 +0,0 @@
----
-layout: docs
-title: CSS variables
-description: Use Bootstrap's CSS custom properties for fast and forward-looking design and development.
-group: customize
-toc: true
----
-
-Bootstrap includes around two dozen [CSS custom properties (variables)](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) in its compiled CSS, with dozens more on the way for improved customization on a per-component basis. These provide easy access to commonly used values like our theme colors, breakpoints, and primary font stacks when working in your browser's inspector, a code sandbox, or general prototyping.
-
-**All our custom properties are prefixed with `bs-`** to avoid conflicts with third party CSS.
-
-## Root variables
-
-Here are the variables we include (note that the `:root` is required) that can be accessed anywhere Bootstrap's CSS is loaded. They're located in our `_root.scss` file and included in our compiled dist files.
-
-```css
-{{< root.inline >}}
-{{- $css := readFile "dist/css/bootstrap.css" -}}
-{{- $match := findRE ":root {([^}]*)}" $css 1 -}}
-
-{{- if (eq (len $match) 0) -}}
-{{- errorf "Got no matches for :root in %q!" $.Page.Path -}}
-{{- end -}}
-
-{{- index $match 0 -}}
-
-{{< /root.inline >}}
-```
-
-## Component variables
-
-We're also beginning to make use of custom properties as local variables for various components. This way we can reduce our compiled CSS, ensure styles aren't inherited in places like nested tables, and allow some basic restyling and extending of Bootstrap components after Sass compilation.
-
-Have a look at our table documentation for some [insight into how we're using CSS variables]({{< docsref "/content/tables#how-do-the-variants-and-accented-tables-work" >}}).
-
-We're also using CSS variables across our grids—primarily for gutters—with more component usage coming in the future.
-
-## Examples
-
-CSS variables offer similar flexibility to Sass's variables, but without the need for compilation before being served to the browser. For example, here we're resetting our page's font and link styles with CSS variables.
-
-```css
-body {
- font: 1rem/1.5 var(--bs-font-sans-serif);
-}
-a {
- color: var(--bs-blue);
-}
-```
diff --git a/site/content/docs/5.0/customize/optimize.md b/site/content/docs/5.0/customize/optimize.md
deleted file mode 100644
index fbf3f6b05..000000000
--- a/site/content/docs/5.0/customize/optimize.md
+++ /dev/null
@@ -1,79 +0,0 @@
----
-layout: docs
-title: Optimize
-description: Keep your projects lean, responsive, and maintainable so you can deliver the best experience and focus on more important jobs.
-group: customize
-toc: true
----
-
-## Lean Sass imports
-
-When using Sass in your asset pipeline, make sure you optimize Bootstrap by only `@import`ing the components you need. Your largest optimizations will likely come from the `Layout & Components` section of our `bootstrap.scss`.
-
-{{< scss-docs name="import-stack" file="scss/bootstrap.scss" >}}
-
-
-If you're not using a component, comment it out or delete it entirely. For example, if you're not using the carousel, remove that import to save some file size in your compiled CSS. Keep in mind there are some dependencies across Sass imports that may make it more difficult to omit a file.
-
-## Lean JavaScript
-
-Bootstrap's JavaScript includes every component in our primary dist files (`bootstrap.js` and `bootstrap.min.js`), and even our primary dependency (Popper) with our bundle files (`bootstrap.bundle.js` and `bootstrap.bundle.min.js`). While you're customizing via Sass, be sure to remove related JavaScript.
-
-For instance, assuming you're using your own JavaScript bundler like Webpack or Rollup, you'd only import the JavaScript you plan on using. In the example below, we show how to just include our modal JavaScript:
-
-```js
-// Import just what we need
-
-// import 'bootstrap/js/dist/alert';
-// import 'bootstrap/js/dist/button';
-// import 'bootstrap/js/dist/carousel';
-// import 'bootstrap/js/dist/collapse';
-// import 'bootstrap/js/dist/dropdown';
-import 'bootstrap/js/dist/modal';
-// import 'bootstrap/js/dist/popover';
-// import 'bootstrap/js/dist/scrollspy';
-// import 'bootstrap/js/dist/tab';
-// import 'bootstrap/js/dist/toast';
-// import 'bootstrap/js/dist/tooltip';
-```
-
-This way, you're not including any JavaScript you don't intend to use for components like buttons, carousels, and tooltips. If you're importing dropdowns, tooltips or popovers, be sure to list the Popper dependency in your `package.json` file.
-
-{{< callout info >}}
-### Default Exports
-
-Files in `bootstrap/js/dist` use the **default export**, so if you want to use one of them you have to do the following:
-
-```js
-import Modal from 'bootstrap/js/dist/modal'
-
-const modal = new Modal(document.getElementById('myModal'))
-```
-{{< /callout >}}
-
-## Autoprefixer .browserslistrc
-
-Bootstrap depends on Autoprefixer to automatically add browser prefixes to certain CSS properties. Prefixes are dictated by our `.browserslistrc` file, found in the root of the Bootstrap repo. Customizing this list of browsers and recompiling the Sass will automatically remove some CSS from your compiled CSS, if there are vendor prefixes unique to that browser or version.
-
-## Unused CSS
-
-_Help wanted with this section, please consider opening a PR. Thanks!_
-
-While we don't have a prebuilt example for using [PurgeCSS](https://github.com/FullHuman/purgecss) with Bootstrap, there are some helpful articles and walkthroughs that the community has written. Here are some options:
-
--
--
-
-Lastly, this [CSS Tricks article on unused CSS](https://css-tricks.com/how-do-you-remove-unused-css-from-a-site/) shows how to use PurgeCSS and other similar tools.
-
-## Minify and gzip
-
-Whenever possible, be sure to compress all the code you serve to your visitors. If you're using Bootstrap dist files, try to stick to the minified versions (indicated by the `.min.css` and `.min.js` extensions). If you're building Bootstrap from the source with your own build system, be sure to implement your own minifiers for HTML, CSS, and JS.
-
-## Nonblocking files
-
-_Help wanted with this section, please consider opening a PR. Thanks!_
-
-## Always use https
-
-_Help wanted with this section, please consider opening a PR. Thanks!_
diff --git a/site/content/docs/5.0/customize/options.md b/site/content/docs/5.0/customize/options.md
deleted file mode 100644
index ff7c58095..000000000
--- a/site/content/docs/5.0/customize/options.md
+++ /dev/null
@@ -1,29 +0,0 @@
----
-layout: docs
-title: Options
-description: Quickly customize Bootstrap with built-in variables to easily toggle global CSS preferences for controlling style and behavior.
-group: customize
----
-
-Customize Bootstrap with our built-in custom variables file and easily toggle global CSS preferences with new `$enable-*` Sass variables. Override a variable's value and recompile with `npm run test` as needed.
-
-You can find and customize these variables for key global options in Bootstrap's `scss/_variables.scss` file.
-
-{{< bs-table "table text-start" >}}
-| Variable | Values | Description |
-| ------------------------------ | ---------------------------------- | -------------------------------------------------------------------------------------- |
-| `$spacer` | `1rem` (default), or any value > 0 | Specifies the default spacer value to programmatically generate our [spacer utilities]({{< docsref "/utilities/spacing" >}}). |
-| `$enable-rounded` | `true` (default) or `false` | Enables predefined `border-radius` styles on various components. |
-| `$enable-shadows` | `true` or `false` (default) | Enables predefined decorative `box-shadow` styles on various components. Does not affect `box-shadow`s used for focus states. |
-| `$enable-gradients` | `true` or `false` (default) | Enables predefined gradients via `background-image` styles on various components. |
-| `$enable-transitions` | `true` (default) or `false` | Enables predefined `transition`s on various components. |
-| `$enable-reduced-motion` | `true` (default) or `false` | Enables the [`prefers-reduced-motion` media query]({{< docsref "/getting-started/accessibility#reduced-motion" >}}), which suppresses certain animations/transitions based on the users' browser/operating system preferences. |
-| `$enable-grid-classes` | `true` (default) or `false` | Enables the generation of CSS classes for the grid system (e.g. `.row`, `.col-md-1`, etc.). |
-| `$enable-caret` | `true` (default) or `false` | Enables pseudo element caret on `.dropdown-toggle`. |
-| `$enable-button-pointers` | `true` (default) or `false` | Add "hand" cursor to non-disabled button elements. |
-| `$enable-rfs` | `true` (default) or `false` | Globally enables [RFS]({{< docsref "/getting-started/rfs" >}}). |
-| `$enable-validation-icons` | `true` (default) or `false` | Enables `background-image` icons within textual inputs and some custom forms for validation states. |
-| `$enable-negative-margins` | `true` or `false` (default) | Enables the generation of [negative margin utilities]({{< docsref "/utilities/spacing#negative-margin" >}}). |
-| `$enable-deprecation-messages` | `true` or `false` (default) | Set to `true` to show warnings when using any of the deprecated mixins and functions that are planned to be removed in `v5`. |
-| `$enable-important-utilities` | `true` (default) or `false` | Enables the `!important` suffix in utility classes. |
-{{< /bs-table >}}
diff --git a/site/content/docs/5.0/customize/overview.md b/site/content/docs/5.0/customize/overview.md
deleted file mode 100644
index ce94ebfc4..000000000
--- a/site/content/docs/5.0/customize/overview.md
+++ /dev/null
@@ -1,51 +0,0 @@
----
-layout: docs
-title: Customize
-description: Learn how to theme, customize, and extend Bootstrap with Sass, a boatload of global options, an expansive color system, and more.
-group: customize
-toc: false
-aliases: "/docs/5.0/customize/"
-sections:
- - title: Sass
- description: Utilize our source Sass files to take advantage of variables, maps, mixins, and functions.
- - title: Options
- description: Customize Bootstrap with built-in variables to easily toggle global CSS preferences.
- - title: Color
- description: Learn about and customize the color systems that support the entire toolkit.
- - title: Components
- description: Learn how we build nearly all our components responsively and with base and modifier classes.
- - title: CSS variables
- description: Use Bootstrap's CSS custom properties for fast and forward-looking design and development.
- - title: Optimize
- description: Keep your projects lean, responsive, and maintainable so you can deliver the best experience.
----
-
-## Overview
-
-There are multiple ways to customize Bootstrap. Your best path can depend on your project, the complexity of your build tools, the version of Bootstrap you're using, browser support, and more.
-
-Our two preferred methods are:
-
-1. Using Bootstrap [via package manager]({{< docsref "/getting-started/download#package-managers" >}}) so you can use and extend our source files.
-2. Using Bootstrap's compiled distribution files or [jsDelivr]({{< docsref "/getting-started/download#cdn-via-jsdelivr" >}}) so you can add onto or override Bootstrap's styles.
-
-While we cannot go into details here on how to use every package manager, we can give some guidance on [using Bootstrap with your own Sass compiler]({{< docsref "/customize/sass" >}}).
-
-For those who want to use the distribution files, review the [getting started page]({{< docsref "/getting-started/introduction" >}}) for how to include those files and an example HTML page. From there, consult the docs for the layout, components, and behaviors you'd like to use.
-
-As you familiarize yourself with Bootstrap, continue exploring this section for more details on how to utilize our global options, making use of and changing our color system, how we build our components, how to use our growing list of CSS custom properties, and how to optimize your code when building with Bootstrap.
-
-## CSPs and embedded SVGs
-
-Several Bootstrap components include embedded SVGs in our CSS to style components consistently and easily across browsers and devices. **For organizations with more strict CSP configurations**, we've documented all instances of our embedded SVGs (all of which are applied via `background-image`) so you can more thoroughly review your options.
-
-- [Accordion]({{< docsref "/components/accordion" >}})
-- [Close button]({{< docsref "/components/close-button" >}}) (used in alerts and modals)
-- [Form checkboxes and radio buttons]({{< docsref "/forms/checks-radios" >}})
-- [Form switches]({{< docsref "/forms/checks-radios#switches" >}})
-- [Form validation icons]({{< docsref "/forms/validation#server-side" >}})
-- [Select menus]({{< docsref "/forms/select" >}})
-- [Carousel controls]({{< docsref "/components/carousel#with-controls" >}})
-- [Navbar toggle buttons]({{< docsref "/components/navbar#responsive-behaviors" >}})
-
-Based on [community conversation](https://github.com/twbs/bootstrap/issues/25394), some options for addressing this in your own codebase include replacing the URLs with locally hosted assets, removing the images and using inline images (not possible in all components), and modifying your CSP. Our recommendation is to carefully review your own security policies and decide on a best path forward, if necessary.
\ No newline at end of file
diff --git a/site/content/docs/5.0/customize/sass.md b/site/content/docs/5.0/customize/sass.md
deleted file mode 100644
index d21dff7aa..000000000
--- a/site/content/docs/5.0/customize/sass.md
+++ /dev/null
@@ -1,252 +0,0 @@
----
-layout: docs
-title: Sass
-description: Utilize our source Sass files to take advantage of variables, maps, mixins, and functions to help you build faster and customize your project.
-group: customize
-toc: true
----
-
-Utilize our source Sass files to take advantage of variables, maps, mixins, and more.
-
-## File structure
-
-Whenever possible, avoid modifying Bootstrap's core files. For Sass, that means creating your own stylesheet that imports Bootstrap so you can modify and extend it. Assuming you're using a package manager like npm, you'll have a file structure that looks like this:
-
-```text
-your-project/
-├── scss
-│ └── custom.scss
-└── node_modules/
- └── bootstrap
- ├── js
- └── scss
-```
-
-If you've downloaded our source files and aren't using a package manager, you'll want to manually setup something similar to that structure, keeping Bootstrap's source files separate from your own.
-
-```text
-your-project/
-├── scss
-│ └── custom.scss
-└── bootstrap/
- ├── js
- └── scss
-```
-
-## Importing
-
-In your `custom.scss`, you'll import Bootstrap's source Sass files. You have two options: include all of Bootstrap, or pick the parts you need. We encourage the latter, though be aware there are some requirements and dependencies across our components. You also will need to include some JavaScript for our plugins.
-
-```scss
-// Custom.scss
-// Option A: Include all of Bootstrap
-
-@import "../node_modules/bootstrap/scss/bootstrap";
-```
-
-```scss
-// Custom.scss
-// Option B: Include parts of Bootstrap
-
-// Required
-@import "../node_modules/bootstrap/scss/functions";
-@import "../node_modules/bootstrap/scss/variables";
-@import "../node_modules/bootstrap/scss/mixins";
-
-// Optional
-@import "../node_modules/bootstrap/scss/root";
-@import "../node_modules/bootstrap/scss/reboot";
-@import "../node_modules/bootstrap/scss/type";
-@import "../node_modules/bootstrap/scss/images";
-@import "../node_modules/bootstrap/scss/containers";
-@import "../node_modules/bootstrap/scss/grid";
-```
-
-With that setup in place, you can begin to modify any of the Sass variables and maps in your `custom.scss`. You can also start to add parts of Bootstrap under the `// Optional` section as needed. We suggest using the full import stack from our `bootstrap.scss` file as your starting point.
-
-## Variable defaults
-
-Every Sass variable in Bootstrap includes the `!default` flag allowing you to override the variable's default value in your own Sass without modifying Bootstrap's source code. Copy and paste variables as needed, modify their values, and remove the `!default` flag. If a variable has already been assigned, then it won't be re-assigned by the default values in Bootstrap.
-
-You will find the complete list of Bootstrap's variables in `scss/_variables.scss`. Some variables are set to `null`, these variables don't output the property unless they are overridden in your configuration.
-
-Variable overrides within the same Sass file can come before or after the default variables. However, when overriding across Sass files, your overrides must come before you import Bootstrap's Sass files.
-
-Here's an example that changes the `background-color` and `color` for the `` when importing and compiling Bootstrap via npm:
-
-```scss
-// Your variable overrides
-$body-bg: #000;
-$body-color: #111;
-
-// Bootstrap and its default variables
-@import "../node_modules/bootstrap/scss/bootstrap";
-```
-
-Repeat as necessary for any variable in Bootstrap, including the global options below.
-
-## Maps and loops
-
-Bootstrap includes a handful of Sass maps, key value pairs that make it easier to generate families of related CSS. We use Sass maps for our colors, grid breakpoints, and more. Just like Sass variables, all Sass maps include the `!default` flag and can be overridden and extended.
-
-Some of our Sass maps are merged into empty ones by default. This is done to allow easy expansion of a given Sass map, but comes at the cost of making _removing_ items from a map slightly more difficult.
-
-### Modify map
-
-All variables in the `$theme-colors` map are defined as standalone variables. To modify an existing color in our `$theme-colors` map, add the following to your custom Sass file:
-
-```scss
-$primary: #0074d9;
-$danger: #ff4136;
-```
-
-Later on, theses variables are set in Bootstrap's `$theme-colors` map:
-
-```scss
-$theme-colors: (
- "primary": $primary,
- "danger": $danger
-);
-```
-
-### Add to map
-
-Add new colors to `$theme-colors`, or any other map, by creating a new Sass map with your custom values and merging it with the original map. In this case, we'll create a new `$custom-colors` map and merge it with `$theme-colors`.
-
-```scss
-// Create your own map
-$custom-colors: (
- "custom-color": #900
-);
-
-// Merge the maps
-$theme-colors: map-merge($theme-colors, $custom-colors);
-```
-
-### Remove from map
-
-To remove colors from `$theme-colors`, or any other map, use `map-remove`. Be aware you must insert it between our requirements and options:
-
-```scss
-// Required
-@import "../node_modules/bootstrap/scss/functions";
-@import "../node_modules/bootstrap/scss/variables";
-@import "../node_modules/bootstrap/scss/mixins";
-
-$theme-colors: map-remove($theme-colors, "info", "light", "dark");
-
-// Optional
-@import "../node_modules/bootstrap/scss/root";
-@import "../node_modules/bootstrap/scss/reboot";
-@import "../node_modules/bootstrap/scss/type";
-...
-```
-
-## Required keys
-
-Bootstrap assumes the presence of some specific keys within Sass maps as we used and extend these ourselves. As you customize the included maps, you may encounter errors where a specific Sass map's key is being used.
-
-For example, we use the `primary`, `success`, and `danger` keys from `$theme-colors` for links, buttons, and form states. Replacing the values of these keys should present no issues, but removing them may cause Sass compilation issues. In these instances, you'll need to modify the Sass code that makes use of those values.
-
-## Functions
-
-### Colors
-
-Next to the [Sass maps]({{< docsref "/customize/color#color-sass-maps" >}}) we have, theme colors can also be used as standalone variables, like `$primary`.
-
-```scss
-.custom-element {
- color: $gray-100;
- background-color: $dark;
-}
-```
-
-You can lighten or darken colors with Bootstrap's `tint-color()` and `shade-color()` functions. These functions will mix colors with black or white, unlike Sass' native `lighten()` and `darken()` functions which will change the lightness by a fixed amount, which often doesn't lead to the desired effect.
-
-{{< scss-docs name="color-functions" file="scss/_functions.scss" >}}
-
-In practice, you'd call the function and pass in the color and weight parameters.
-
-```scss
-.custom-element {
- color: tint-color($primary, 10%);
-}
-
-.custom-element-2 {
- color: shade-color($danger, 30%);
-}
-```
-
-### Color contrast
-
-In order to meet [WCAG 2.0 accessibility standards for color contrast](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html), authors **must** provide [a contrast ratio of at least 4.5:1](https://www.w3.org/WAI/WCAG20/quickref/20160105/Overview.php#visual-audio-contrast-contrast), with very few exceptions.
-
-An additional function we include in Bootstrap is the color contrast function, `color-contrast`. It utilizes the [WCAG 2.0 algorithm](https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests) for calculating contrast thresholds based on [relative luminance](https://www.w3.org/WAI/GL/wiki/Relative_luminance) in a `sRGB` colorspace to automatically return a light (`#fff`), dark (`#212529`) or black (`#000`) contrast color based on the specified base color. This function is especially useful for mixins or loops where you're generating multiple classes.
-
-For example, to generate color swatches from our `$theme-colors` map:
-
-```scss
-@each $color, $value in $theme-colors {
- .swatch-#{$color} {
- color: color-contrast($value);
- }
-}
-```
-
-It can also be used for one-off contrast needs:
-
-```scss
-.custom-element {
- color: color-contrast(#000); // returns `color: #fff`
-}
-```
-
-You can also specify a base color with our color map functions:
-
-```scss
-.custom-element {
- color: color-contrast($dark); // returns `color: #fff`
-}
-```
-
-### Escape SVG
-
-We use the `escape-svg` function to escape the `<`, `>` and `#` characters for SVG background images. When using the `escape-svg` function, data URIs must be quoted.
-
-### Add and Subtract functions
-
-We use the `add` and `subtract` functions to wrap the CSS `calc` function. The primary purpose of these functions is to avoid errors when a "unitless" `0` value is passed into a `calc` expression. Expressions like `calc(10px - 0)` will return an error in all browsers, despite being mathematically correct.
-
-Example where the calc is valid:
-
-```scss
-$border-radius: .25rem;
-$border-width: 1px;
-
-.element {
- // Output calc(.25rem - 1px) is valid
- border-radius: calc($border-radius - $border-width);
-}
-
-.element {
- // Output the same calc(.25rem - 1px) as above
- border-radius: subtract($border-radius, $border-width);
-}
-```
-
-Example where the calc is invalid:
-
-```scss
-$border-radius: .25rem;
-$border-width: 0;
-
-.element {
- // Output calc(.25rem - 0) is invalid
- border-radius: calc($border-radius - $border-width);
-}
-
-.element {
- // Output .25rem
- border-radius: subtract($border-radius, $border-width);
-}
-```
diff --git a/site/content/docs/5.0/examples/_index.md b/site/content/docs/5.0/examples/_index.md
deleted file mode 100644
index 4d747cd78..000000000
--- a/site/content/docs/5.0/examples/_index.md
+++ /dev/null
@@ -1,36 +0,0 @@
----
-layout: single
-title: Examples
-description: Quickly get a project started with any of our examples ranging from using parts of the framework to custom components and layouts.
-aliases: "/examples/"
----
-
-{{< list-examples.inline >}}
-{{ range $entry := $.Site.Data.examples -}}
- {{ $entry.category }}
- {{ $entry.description }}
- {{ if eq $entry.category "RTL" -}}
-
-
The RTL feature is still experimental and will probably evolve according to user feedback. Spotted something or have an improvement to suggest? Open an issue, we'd love to get your insights.
-
- {{ end -}}
-
- {{ range $i, $example := $entry.examples -}}
- {{- $len := len $entry.examples -}}
- {{ if (eq $i 0) }}{{ end }}
-
- {{ if (eq (add $i 1) $len) }}
{{ end }}
- {{ end -}}
-{{ end -}}
-{{< /list-examples.inline >}}
diff --git a/site/content/docs/5.0/examples/album-rtl/index.html b/site/content/docs/5.0/examples/album-rtl/index.html
deleted file mode 100644
index ff84f122b..000000000
--- a/site/content/docs/5.0/examples/album-rtl/index.html
+++ /dev/null
@@ -1,209 +0,0 @@
----
-layout: examples
-title: مثال الألبوم
-direction: rtl
----
-
-
-
-
-
-
-
-
-
مثال الألبوم
-
شيء قصير وقائد حول المجموعة أدناه - محتوياتها ، ومنشئها ، وما إلى ذلك. اجعلها قصيرة ولطيفة ، ولكن ليست قصيرة جدًا حتى لا يتخطى الناس ببساطة هذه المجموعة تمامًا.
-
- الدعوة الرئيسية للعمل
- عمل ثانوي
-
-
-
-
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="ظفري" >}}
-
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي. هذا المحتوى أطول قليلاً.
-
-
-
-
-
-
9 دقائق
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="ظفري" >}}
-
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي. هذا المحتوى أطول قليلاً.
-
-
-
-
-
-
9 دقائق
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="ظفري" >}}
-
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي. هذا المحتوى أطول قليلاً.
-
-
-
-
-
-
9 دقائق
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="ظفري" >}}
-
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي. هذا المحتوى أطول قليلاً.
-
-
-
-
-
-
9 دقائق
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="ظفري" >}}
-
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي. هذا المحتوى أطول قليلاً.
-
-
-
-
-
-
9 دقائق
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="ظفري" >}}
-
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي. هذا المحتوى أطول قليلاً.
-
-
-
-
-
-
9 دقائق
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="ظفري" >}}
-
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي. هذا المحتوى أطول قليلاً.
-
-
-
-
-
-
9 دقائق
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="ظفري" >}}
-
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي. هذا المحتوى أطول قليلاً.
-
-
-
-
-
-
9 دقائق
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="ظفري" >}}
-
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي. هذا المحتوى أطول قليلاً.
-
-
-
-
-
-
9 دقائق
-
-
-
-
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/album/index.html b/site/content/docs/5.0/examples/album/index.html
deleted file mode 100644
index 2d25d726a..000000000
--- a/site/content/docs/5.0/examples/album/index.html
+++ /dev/null
@@ -1,208 +0,0 @@
----
-layout: examples
-title: Album example
----
-
-
-
-
-
-
-
-
-
Album example
-
Something short and leading about the collection below—its contents, the creator, etc. Make it short and sweet, but not too short so folks don’t simply skip over it entirely.
-
- Main call to action
- Secondary action
-
-
-
-
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="Thumbnail" >}}
-
-
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
-
-
-
-
-
9 mins
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="Thumbnail" >}}
-
-
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
-
-
-
-
-
9 mins
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="Thumbnail" >}}
-
-
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
-
-
-
-
-
9 mins
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="Thumbnail" >}}
-
-
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
-
-
-
-
-
9 mins
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="Thumbnail" >}}
-
-
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
-
-
-
-
-
9 mins
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="Thumbnail" >}}
-
-
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
-
-
-
-
-
9 mins
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="Thumbnail" >}}
-
-
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
-
-
-
-
-
9 mins
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="Thumbnail" >}}
-
-
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
-
-
-
-
-
9 mins
-
-
-
-
-
-
- {{< placeholder width="100%" height="225" background="#55595c" color="#eceeef" class="card-img-top" text="Thumbnail" >}}
-
-
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
-
-
-
-
-
9 mins
-
-
-
-
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/blog-rtl/index.html b/site/content/docs/5.0/examples/blog-rtl/index.html
deleted file mode 100644
index c72171770..000000000
--- a/site/content/docs/5.0/examples/blog-rtl/index.html
+++ /dev/null
@@ -1,202 +0,0 @@
----
-layout: examples
-title: قالب المدونة
-direction: rtl
-extra_css:
- - "https://fonts.googleapis.com/css?family=Amiri:wght@400;700&display=swap"
- - "../blog/blog.rtl.css"
-include_js: false
----
-
-
-
-
-
-
-
عنوان مشاركة مدونة مميزة أطول
-
أسطر نصية متعددة تشكل الجزء الأمامي ، لإعلام القراء الجدد بسرعة وكفاءة حول أكثر الأشياء إثارة للاهتمام في محتويات هذه المشاركة.
-
أكمل القراءة...
-
-
-
-
-
-
-
-
العالمية
-
مشاركة مميزة
-
12 نوفمبر
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي.
-
أكمل القراءة
-
-
- {{< placeholder width="200" height="250" background="#55595c" color="#eceeef" text="ظفري" >}}
-
-
-
-
-
-
-
التصميم
-
عنوان الوظيفة
-
11 نوفمبر
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي.
-
أكمل القراءة
-
-
- {{< placeholder width="200" height="250" background="#55595c" color="#eceeef" text="ظفري" >}}
-
-
-
-
-
-
-
-
- من Firehose
-
-
-
- عينة مشاركة مدونة
- 1 يناير 2014 بواسطة Mark
-
- تعرض مشاركة المدونة هذه بضعة أنواع مختلفة من المحتوى الذي يتم دعمه وتصميمه باستخدام Bootstrap. الطباعة الأساسية والصور والرموز كلها مدعومة.
-
- إذ مدن وبداية الجنود, ثم ٠٨٠٤ الثقيل هذه. ولم وقرى ومحاولة أي, وقام أراضي وصل مع. ما أخذ يتمكن الصعداء الإثنان, أم هامش أعمال إتفاقية ضرب. عدم إذ بقسوة غرّة، ممثّلة, تم وحتّى تعديل لها. عن ولم بسبب الأوروبيّون, ما كما وتنامت الإتفاقية. وقامت وبعدما بتخصيص و بال, سكان إعلان غريمه الا أي.
-
- ذلك هناك ألمانيا إذ. فعل الجنوبي اليابانية بل, جُل مع إنطلاق الموسوعة. واشتدّت وحلفاؤها عن دنو. عن إيو كثيرة المجتمع, وفي شمال حالية انذار أي. إنطلاق تزامناً بالإنزال و تلك.
-
- إذ دار السفن الخارجية, عل شيء الأسيوي شموليةً, الفترة والإتحاد أن الا. هو الحكم الحكومة حين. تم ليرتفع بأضرار التبرعات مما, حاول ساعة عن يكن. حيث مع حاول أجزاء الهجوم, يتم بـ قبضتهم الفرنسي.
- عنوان
- جُل عن اللا وقوعها،, دنو ثم وترك سكان الشمال, كل ذلك وأزيز والقرى. أم عدد مهمّات الساحل, قد تاريخ أفريقيا الإحتفاظ دول. مدن لبلجيكا، واندونيسيا، كل, مع أسر الشمال الأرضية بالسيطرة. في فقامت والروسية كلّ. عن فعل فسقط استبدال.
- العنوان الفرعي
- موالية استدعى كل حيث, وبدون الأولية الاندونيسية و كما. فعل قد لعدم اليابانية, اليميني الساحلية أن جهة. جُل ما اليميني العسكري الدنمارك. إذ وفي الموسوعة الأمريكي, سابق الأمريكية ثم مدن. تم وفي أوروبا بلديهما ماليزيا،, ويتّفق بالجانب وقد أي.
- Example code block
- تحت بولندا، مليارات لم. الشهير الإنزال وفي بل, مع قبل واتّجه الخاسر باستخدام. قدما يونيو مواقعها يكن و, سابق أراضي الإكتفاء حتى كل, و جعل مهمّات المتحدة. أخذ عل الثقيل الضروري لإنعدام, دول جيما أراض الدولارات تم. الخاطفة استعملت وباستثناء ثم انه, به، جدول الأهداف ماليزيا، ان. عن هناك الإحتفاظ غير.
- العنوان الفرعي
- مرجع استدعى بريطانيا ذلك عن, ٣٠ كان ألمّ الشّعبين الأمريكي. دار تغييرات الشرقية التجارية كل, تم يتبقّ للحكومة كلّ. ثمّة الشتاء الساحل و الى, بل أثره، فاتّبع يتم. دون وترك وتنصيب المبرمة ما, هذه عن زهاء استدعى انتصارهم, يعبأ شواطيء الأرضية به، أم. والتي وفرنسا الأولية بـ هذه, قائمة الوزراء ضرب أي.
-
- - بل دفّة فسقط بال, الله تغييرات الرئيسية من مدن. كرسي الأمم ويكيبيديا،.
- - لم عدد يطول جديدة ولاتّساع. أم تلك وحتّى.
- - ذات مئات المشترك بالمحور عن وشعار.
-
- لكل خلاف وترك المؤلّفة بل. ٣٠ حين أواخر أصقاع. بلا مع أوزار النزاع, مع إيطاليا بالرّغم بالمطالبة ومن. ان دول الحرة وقدّموا لتقليعة. الحرة بريطانيا، إذ وصل, الى وقام أجزاء أوراقهم عن. الباهضة الخاسرة حيث و.
-
- - عرض قتيل، الجنرال الأوروبي ما, ثم تعد بقعة.
- - ثم الا الجوي اوروبا, و غير العسكري التبرعات, ترتيب مواقعها أوراقهم ضرب في إذ.
- - علاقة يتعلّق وبلجيكا، على مع, الجنود الخطّة جُل عل, فقد ان سقوط.
-
- الشرق، وصافرات الساحلية بل بلا. ٠٨٠٤ ودول العناد انه أن. في تونس أوزار مقاومة وصل, قد وقد حلّت دأبوا رجوعهم. أفاق والعتاد لم قبل, عن كلّ منتصف محاولات. المشترك الأولية ان كلا, ألمّ إحتار التقليدية و مدن. عن عدد تسمّى المسرح الطرفين.
-
-
-
- مشاركة مدونة أخرى
- 23 ديسمبر 2013 بواسطة Jacob
-
- إذ مدن وبداية الجنود, ثم ٠٨٠٤ الثقيل هذه. ولم وقرى ومحاولة أي, وقام أراضي وصل مع. ما أخذ يتمكن الصعداء الإثنان, أم هامش أعمال إتفاقية ضرب. عدم إذ بقسوة غرّة، ممثّلة, تم وحتّى تعديل لها. عن ولم بسبب الأوروبيّون, ما كما وتنامت الإتفاقية. وقامت وبعدما بتخصيص و بال, سكان إعلان غريمه الا أي.
-
- ذلك هناك ألمانيا إذ. فعل الجنوبي اليابانية بل, جُل مع إنطلاق الموسوعة. واشتدّت وحلفاؤها عن دنو. عن إيو كثيرة المجتمع, وفي شمال حالية انذار أي. إنطلاق تزامناً بالإنزال و تلك.
-
- إذ دار السفن الخارجية, عل شيء الأسيوي شموليةً, الفترة والإتحاد أن الا. هو الحكم الحكومة حين. تم ليرتفع بأضرار التبرعات مما, حاول ساعة عن يكن. حيث مع حاول أجزاء الهجوم, يتم بـ قبضتهم الفرنسي.
- جُل عن اللا وقوعها،, دنو ثم وترك سكان الشمال, كل ذلك وأزيز والقرى. أم عدد مهمّات الساحل, قد تاريخ أفريقيا الإحتفاظ دول. مدن لبلجيكا، واندونيسيا، كل, مع أسر الشمال الأرضية بالسيطرة. في فقامت والروسية كلّ. عن فعل فسقط استبدال.
-
-
-
- ميزة جديدة
- 14 ديسمبر 2013 بواسطة Jacob
-
- تحت بولندا، مليارات لم. الشهير الإنزال وفي بل, مع قبل واتّجه الخاسر باستخدام. قدما يونيو مواقعها يكن و, سابق أراضي الإكتفاء حتى كل, و جعل مهمّات المتحدة. أخذ عل الثقيل الضروري لإنعدام, دول جيما أراض الدولارات تم. الخاطفة استعملت وباستثناء ثم انه, به، جدول الأهداف ماليزيا، ان. عن هناك الإحتفاظ غير.
- مرجع استدعى بريطانيا ذلك عن, ٣٠ كان ألمّ الشّعبين الأمريكي. دار تغييرات الشرقية التجارية كل, تم يتبقّ للحكومة كلّ. ثمّة الشتاء الساحل و الى, بل أثره، فاتّبع يتم. دون وترك وتنصيب المبرمة ما, هذه عن زهاء استدعى انتصارهم, يعبأ شواطيء الأرضية به، أم. والتي وفرنسا الأولية بـ هذه, قائمة الوزراء ضرب أي.
-
- - بل دفّة فسقط بال, الله تغييرات الرئيسية من مدن. كرسي الأمم ويكيبيديا،.
- - لم عدد يطول جديدة ولاتّساع. أم تلك وحتّى.
- - ذات مئات المشترك بالمحور عن وشعار.
-
- لكل خلاف وترك المؤلّفة بل. ٣٠ حين أواخر أصقاع. بلا مع أوزار النزاع, مع إيطاليا بالرّغم بالمطالبة ومن. ان دول الحرة وقدّموا لتقليعة. الحرة بريطانيا، إذ وصل, الى وقام أجزاء أوراقهم عن. الباهضة الخاسرة حيث و.
-
-
-
-
-
-
-
-
-
حول
-
بل مدن وإعلان بتخصيص إيطاليا. حيث عقبت أساسي وتنامت و, وباءت وايرلندا وقد بـ, مرمى سقطت إحكام يكن و. كل ومن تصفح بالرّغم الاندونيسية. ٣٠ انتباه والروسية كلّ, الوراء ولكسمبورغ عن لكل. الخاصّة والإتحاد لان بل, وقد الهجوم وتنامت و.
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/blog/blog.rtl.css b/site/content/docs/5.0/examples/blog/blog.rtl.css
deleted file mode 100644
index 35eac731f..000000000
--- a/site/content/docs/5.0/examples/blog/blog.rtl.css
+++ /dev/null
@@ -1,103 +0,0 @@
-/* stylelint-disable selector-list-comma-newline-after */
-
-.blog-header {
- line-height: 1;
- border-bottom: 1px solid #e5e5e5;
-}
-
-.blog-header-logo {
- font-family: Amiri, Georgia, "Times New Roman", serif;
- font-size: 2.25rem;
-}
-
-.blog-header-logo:hover {
- text-decoration: none;
-}
-
-h1, h2, h3, h4, h5, h6 {
- font-family: Amiri, Georgia, "Times New Roman", serif;
-}
-
-.display-4 {
- font-size: 2.5rem;
-}
-@media (min-width: 768px) {
- .display-4 {
- font-size: 3rem;
- }
-}
-
-.nav-scroller {
- position: relative;
- z-index: 2;
- height: 2.75rem;
- overflow-y: hidden;
-}
-
-.nav-scroller .nav {
- display: flex;
- flex-wrap: nowrap;
- padding-bottom: 1rem;
- margin-top: -1px;
- overflow-x: auto;
- text-align: center;
- white-space: nowrap;
- -webkit-overflow-scrolling: touch;
-}
-
-.nav-scroller .nav-link {
- padding-top: .75rem;
- padding-bottom: .75rem;
- font-size: .875rem;
-}
-
-.card-img-right {
- height: 100%;
- border-radius: 3px 0 0 3px;
-}
-
-.flex-auto {
- flex: 0 0 auto;
-}
-
-.h-250 { height: 250px; }
-@media (min-width: 768px) {
- .h-md-250 { height: 250px; }
-}
-
-/* Pagination */
-.blog-pagination {
- margin-bottom: 4rem;
-}
-.blog-pagination > .btn {
- border-radius: 2rem;
-}
-
-/*
- * Blog posts
- */
-.blog-post {
- margin-bottom: 4rem;
-}
-.blog-post-title {
- margin-bottom: .25rem;
- font-size: 2.5rem;
-}
-.blog-post-meta {
- margin-bottom: 1.25rem;
- color: #727272;
-}
-
-/*
- * Footer
- */
-.blog-footer {
- padding: 2.5rem 0;
- color: #727272;
- text-align: center;
- background-color: #f9f9f9;
- border-top: .05rem solid #e5e5e5;
-}
-.blog-footer p:last-child {
- margin-bottom: 0;
-}
diff --git a/site/content/docs/5.0/examples/blog/index.html b/site/content/docs/5.0/examples/blog/index.html
deleted file mode 100644
index e25d740b9..000000000
--- a/site/content/docs/5.0/examples/blog/index.html
+++ /dev/null
@@ -1,200 +0,0 @@
----
-layout: examples
-title: Blog Template
-extra_css:
- - "https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap"
- - "blog.css"
-include_js: false
----
-
-
-
-
-
-
-
Title of a longer featured blog post
-
Multiple lines of text that form the lede, informing new readers quickly and efficiently about what’s most interesting in this post’s contents.
-
Continue reading...
-
-
-
-
-
-
-
-
World
-
Featured post
-
Nov 12
-
This is a wider card with supporting text below as a natural lead-in to additional content.
-
Continue reading
-
-
- {{< placeholder width="200" height="250" background="#55595c" color="#eceeef" text="Thumbnail" >}}
-
-
-
-
-
-
-
Design
-
Post title
-
Nov 11
-
This is a wider card with supporting text below as a natural lead-in to additional content.
-
Continue reading
-
-
- {{< placeholder width="200" height="250" background="#55595c" color="#eceeef" text="Thumbnail" >}}
-
-
-
-
-
-
-
-
- From the Firehose
-
-
-
- Sample blog post
- January 1, 2014 by Mark
-
- This blog post shows a few different types of content that’s supported and styled with Bootstrap. Basic typography, images, and code are all supported.
-
- Yeah, she dances to her own beat. Oh, no. You could've been the greatest. 'Cause, baby, you're a firework. Maybe a reason why all the doors are closed. Open up your heart and just let it begin. So très chic, yeah, she's a classic.
-
- Bikinis, zucchinis, Martinis, no weenies. I know there will be sacrifice but that's the price. This is how we do it. I'm not sticking around to watch you go down. You think you're so rock and roll, but you're really just a joke. I know one spark will shock the world, yeah yeah. Can't replace you with a million rings.
-
- Trying to connect the dots, don't know what to tell my boss. Before you met me I was alright but things were kinda heavy. You just gotta ignite the light and let it shine. Glitter all over the room pink flamingos in the pool.
- Heading
- Suiting up for my crowning battle. If you only knew what the future holds. Bring the beat back. Peach-pink lips, yeah, everybody stares.
- Sub-heading
- You give a hundred reasons why, and you say you're really gonna try. Straight stuntin' yeah we do it like that. Calling out my name. ‘Cause I, I’m capable of anything.
- Example code block
- Before you met me I was alright but things were kinda heavy. You just gotta ignite the light and let it shine.
- Sub-heading
- You got the finest architecture. Passport stamps, she's cosmopolitan. Fine, fresh, fierce, we got it on lock. Never planned that one day I'd be losing you. She eats your heart out.
-
- - Got a motel and built a fort out of sheets.
- - Your kiss is cosmic, every move is magic.
- - Suiting up for my crowning battle.
-
- Takes you miles high, so high, 'cause she’s got that one international smile.
-
- - Scared to rock the boat and make a mess.
- - I could have rewrite your addiction.
- - I know you get me so I let my walls come down.
-
- After a hurricane comes a rainbow.
-
-
-
- Another blog post
- December 23, 2013 by Jacob
-
- I am ready for the road less traveled. Already brushing off the dust. Yeah, you're lucky if you're on her plane. I used to bite my tongue and hold my breath. Uh, She’s a beast. I call her Karma (come back). Black ray-bans, you know she's with the band. I can't sleep let's run away and don't ever look back, don't ever look back.
-
- Growing fast into a bolt of lightning. Be careful Try not to lead her on
-
- I'm intrigued, for a peek, heard it's fascinating. Oh oh! Wanna be a victim ready for abduction. She's got that international smile, oh yeah, she's got that one international smile. Do you ever feel, feel so paper thin. I’m gon’ put her in a coma. Sun-kissed skin so hot we'll melt your popsicle.
- This is transcendental, on another level, boy, you're my lucky star.
-
-
-
- New feature
- December 14, 2013 by Chris
-
- From Tokyo to Mexico, to Rio. Yeah, you take me to utopia. I'm walking on air. We'd make out in your Mustang to Radiohead. I mean the ones, I mean like she's the one. Sun-kissed skin so hot we'll melt your popsicle. Slow cooking pancakes for my boy, still up, still fresh as a Daisy.
-
- - I hope you got a healthy appetite.
- - You're never gonna be unsatisfied.
- - Got a motel and built a fort out of sheets.
-
- Don't need apologies. Boy, you're an alien your touch so foreign, it's supernatural, extraterrestrial. Talk about our future like we had a clue. I can feel a phoenix inside of me.
-
-
-
-
-
-
-
-
-
About
-
Saw you downtown singing the Blues. Watch you circle the drain. Why don't you let me stop by? Heavy is the head that wears the crown. Yes, we make angels cry, raining down on earth from up above.
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/carousel-rtl/index.html b/site/content/docs/5.0/examples/carousel-rtl/index.html
deleted file mode 100644
index def1abde8..000000000
--- a/site/content/docs/5.0/examples/carousel-rtl/index.html
+++ /dev/null
@@ -1,167 +0,0 @@
----
-layout: examples
-title: قالب دائري
-direction: rtl
-extra_css:
- - "../carousel/carousel.rtl.css"
----
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="100%" background="#777" color="#777" text="false" title="false" >}}
-
-
-
عنوان المثال.
-
نهاية الأوضاع ان أضف, هو مما رجوعهم وقدّموا. أي عدد الدمج نهاية وأكثرها, المسرح الباهضة وبولندا حول و, كل أما سياسة أسابيع. مع حيث قُدُماً الكونجرس, بها و خيار ٢٠٠٤, كلا في مكّن وقام. مع يكن زهاء بالفشل, الجوي الصين الشمال إذ على.
-
سجل اليوم
-
-
-
-
- {{< placeholder width="100%" height="100%" background="#777" color="#777" text="false" title="false" >}}
-
-
-
عنوان مثال آخر.
-
ثم تزامناً الفرنسي الإقتصادية دار. لكل عن الضغوط المتّبعة, أن حتى إختار المدن بالإنزال. عن الشمل بالفشل تلك, بل أراض أوزار بلديهما حول. دون لكون والتي ثم, كُلفة ويعزى استطاعوا أن لمّ. جُل بخطوط واحدة البشريةً.
-
أعرف أكثر
-
-
-
-
- {{< placeholder width="100%" height="100%" background="#777" color="#777" text="false" title="false" >}}
-
-
-
واحد أكثر لقياس جيد.
-
قررت العصبة إيطاليا وتم أن, عن سكان وقامت الحكومة وفي. كان بـ اوروبا اليابانية, ثمّة بوابة يتعلّق عل بعض. عدم رئيس الآلاف أن حدى.
-
تصفح المعرض
-
-
-
-
-
-
- السابق
-
-
-
- التالى
-
-
-
-
-
-
-
-
-
-
-
-
- {{< placeholder width="140" height="140" background="#777" color="#777" class="rounded-circle" >}}
-
عنوان
-
ان وتم عجّل الأجل, قبل نتيجة المشترك بـ, أي جعل جورج أوزار المسرح. أن وإعلان الساحل تلك, مكن ان استبدال الباهضة التكاليف. الى ماذا اليميني الحكومة في, إجلاء نتيجة قبل تم. مساعدة بولندا، أي هذه الحكم.
-
عرض التفاصيل
-
-
- {{< placeholder width="140" height="140" background="#777" color="#777" class="rounded-circle" >}}
-
عنوان
-
هو أخر إتفاقية الدولارات الأوروبيّون, ثانية طوكيو و به،, ونتج أعمال مما أم. عن الا يونيو أفريقيا, السيطرة التقليدي ومن ٣٠. هو الغالي الإتفاقية ويكيبيديا، مكن, و الى هُزم اعتداء وايرلندا. وقبل بمباركة الأوروبيّون عن فقد, بتحدّي والفلبين ما كلا.
-
عرض التفاصيل
-
-
- {{< placeholder width="140" height="140" background="#777" color="#777" class="rounded-circle" >}}
-
عنوان
-
غير عن الثقيل وسمّيت الأوضاع, لم تاريخ بالحرب للسيطرة حين, دار اللا تطوير تم. الى بشرية اليابان في. أما الشهيرة الإثنان وايرلندا ما, لإعلان واشتدّت و مدن. في غير والحزب للسيطرة الإكتفاء. ثانية الكونجرس الا من, جُل ٣٠ وبداية الشرقية.
-
عرض التفاصيل
-
-
-
-
-
-
-
-
-
-
-
العنوان الأول المميز. سيذهل عقلك.
-
في التخطيط التجارية هذا, إذ هذه الشمل موالية الخاطفة. أحدث وبدون اتفاق من غير, جعل عل أطراف مشاركة الأعمال. بل الى قادة واحدة, لهيمنة التجارية حتى ثم. هو وبالرغم ابتدعها بال. بوابة ماشاء أما أي, ما وفي أحكم غريمه التقليدية.
-
-
- {{< placeholder width="500" height="500" background="#eee" color="#aaa" class="bd-placeholder-img-lg featurette-image img-fluid mx-auto" >}}
-
-
-
-
-
-
-
-
أوه نعم ، هذا جيد. شاهد بنفسك.
-
صفحة وحرمان الأراضي أم أخذ, قد ذلك الثقيلة المتاخمة وبريطانيا. أخذ أن اللا لإعلان لهيمنة, وفي كل موالية الشّعبين. تكاليف الخاسرة لمّ لم, إذ بحق موالية الثقيلة. العظمى والفلبين تم عرض, جمعت شعار الحرة حيث بل. عرض و وترك اللازمة.
-
-
- {{< placeholder width="500" height="500" background="#eee" color="#aaa" class="bd-placeholder-img-lg featurette-image img-fluid mx-auto" >}}
-
-
-
-
-
-
-
-
وأخيرًا ، هذا. كش ملك.
-
تحرّك أراضي هذا عن, كرسي وكسبت يتم بل. بحق بل القوى وفنلندا, الجو واُسدل التكاليف وتم تم, بسبب ا السادس كان أن. وبعد ميناء من بلا, تصفح يتبقّ تلك هو. ان دول بخطوط وإعلان ومطالبة, المزيفة الأوروبية، عل حدى قام.
-
-
- {{< placeholder width="500" height="500" background="#eee" color="#aaa" class="bd-placeholder-img-lg featurette-image img-fluid mx-auto" >}}
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/carousel/carousel.rtl.css b/site/content/docs/5.0/examples/carousel/carousel.rtl.css
deleted file mode 100644
index 853640b97..000000000
--- a/site/content/docs/5.0/examples/carousel/carousel.rtl.css
+++ /dev/null
@@ -1,89 +0,0 @@
-/* GLOBAL STYLES
--------------------------------------------------- */
-/* Padding below the footer and lighter body text */
-
-body {
- padding-top: 3rem;
- padding-bottom: 3rem;
- color: #5a5a5a;
-}
-
-
-/* CUSTOMIZE THE CAROUSEL
--------------------------------------------------- */
-
-/* Carousel base class */
-.carousel {
- margin-bottom: 4rem;
-}
-/* Since positioning the image, we need to help out the caption */
-.carousel-caption {
- bottom: 3rem;
- z-index: 10;
-}
-
-/* Declare heights because of positioning of img element */
-.carousel-item {
- height: 32rem;
-}
-.carousel-item > img {
- position: absolute;
- top: 0;
- right: 0;
- min-width: 100%;
- height: 32rem;
-}
-
-
-/* MARKETING CONTENT
--------------------------------------------------- */
-
-/* Center align the text within the three columns below the carousel */
-.marketing .col-lg-4 {
- margin-bottom: 1.5rem;
- text-align: center;
-}
-.marketing h2 {
- font-weight: 400;
-}
-.marketing .col-lg-4 p {
- margin-right: .75rem;
- margin-left: .75rem;
-}
-
-
-/* Featurettes
-------------------------- */
-
-.featurette-divider {
- margin: 5rem 0; /* Space out the Bootstrap
more */
-}
-
-/* Thin out the marketing headings */
-.featurette-heading {
- font-weight: 300;
- line-height: 1;
-}
-
-
-/* RESPONSIVE CSS
--------------------------------------------------- */
-
-@media (min-width: 40em) {
- /* Bump up size of carousel content */
- .carousel-caption p {
- margin-bottom: 1.25rem;
- font-size: 1.25rem;
- line-height: 1.4;
- }
-
- .featurette-heading {
- font-size: 50px;
- }
-}
-
-@media (min-width: 62em) {
- .featurette-heading {
- margin-top: 7rem;
- }
-}
diff --git a/site/content/docs/5.0/examples/carousel/index.html b/site/content/docs/5.0/examples/carousel/index.html
deleted file mode 100644
index 2c0bc5129..000000000
--- a/site/content/docs/5.0/examples/carousel/index.html
+++ /dev/null
@@ -1,166 +0,0 @@
----
-layout: examples
-title: Carousel Template
-extra_css:
- - "carousel.css"
----
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="100%" background="#777" color="#777" text="false" title="false" >}}
-
-
-
Example headline.
-
Some representative placeholder content for the first slide of the carousel.
-
Sign up today
-
-
-
-
- {{< placeholder width="100%" height="100%" background="#777" color="#777" text="false" title="false" >}}
-
-
-
Another example headline.
-
Some representative placeholder content for the second slide of the carousel.
-
Learn more
-
-
-
-
- {{< placeholder width="100%" height="100%" background="#777" color="#777" text="false" title="false" >}}
-
-
-
One more for good measure.
-
Some representative placeholder content for the third slide of this carousel.
-
Browse gallery
-
-
-
-
-
-
- Previous
-
-
-
- Next
-
-
-
-
-
-
-
-
-
-
-
-
- {{< placeholder width="140" height="140" background="#777" color="#777" class="rounded-circle" >}}
-
Heading
-
Some representative placeholder content for the three columns of text below the carousel. This is the first column.
-
View details »
-
-
- {{< placeholder width="140" height="140" background="#777" color="#777" class="rounded-circle" >}}
-
Heading
-
Another exciting bit of representative placeholder content. This time, we've moved on to the second column.
-
View details »
-
-
- {{< placeholder width="140" height="140" background="#777" color="#777" class="rounded-circle" >}}
-
Heading
-
And lastly this, the third column of representative placeholder content.
-
View details »
-
-
-
-
-
-
-
-
-
-
-
First featurette heading. It’ll blow your mind.
-
Some great placeholder content for the first featurette here. Imagine some exciting prose here.
-
-
- {{< placeholder width="500" height="500" background="#eee" color="#aaa" class="bd-placeholder-img-lg featurette-image img-fluid mx-auto" >}}
-
-
-
-
-
-
-
-
Oh yeah, it’s that good. See for yourself.
-
Another featurette? Of course. More placeholder content here to give you an idea of how this layout would work with some actual real-world content in place.
-
-
- {{< placeholder width="500" height="500" background="#eee" color="#aaa" class="bd-placeholder-img-lg featurette-image img-fluid mx-auto" >}}
-
-
-
-
-
-
-
-
And lastly, this one. Checkmate.
-
And yes, this is the last block of representative placeholder content. Again, not really intended to be actually read, simply here to give you a better view of what this would look like with some actual content. Your content.
-
-
- {{< placeholder width="500" height="500" background="#eee" color="#aaa" class="bd-placeholder-img-lg featurette-image img-fluid mx-auto" >}}
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/cheatsheet-rtl/index.html b/site/content/docs/5.0/examples/cheatsheet-rtl/index.html
deleted file mode 100644
index 9b9b81ea6..000000000
--- a/site/content/docs/5.0/examples/cheatsheet-rtl/index.html
+++ /dev/null
@@ -1,1614 +0,0 @@
----
-layout: examples
-title: ورقة غش
-extra_css:
- - "../cheatsheet/cheatsheet.rtl.css"
-extra_js:
- - src: "../cheatsheet/cheatsheet.js"
-body_class: "bg-light"
-direction: rtl
----
-
-
-
-
-
- محتويات
-
-
-
-
-
- {{< example show_markup="false" >}}
-
العرض 1
-
العرض 2
-
العرض 3
-
العرض 4
-
العرض 5
-
العرض 6
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
عنوان 1
-
عنوان 2
-
عنوان 3
-
عنوان 4
-
عنوان 5
-
عنوان 6
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- حيث وبدون الساحة وقوعها، أي, فقد عل مكّن تمهيد قتيل،. ولم والحزب الشرقي و, أضف بالفشل الخاسر استمرار ان. كل أما وحرمان للإتحاد, ٣٠ سبتمبر استعملت جهة, لعملة الثقيلة المتاخمة على لم. أي نفس دارت والفلبين.
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
يمكنك استخدام علامة العلامة لتحديد نص .
-
من المفترض أن يتم التعامل مع هذا السطر كنص محذوف.
-
من المفترض أن يتم التعامل مع هذا السطر على أنه لم يعد دقيقًا.
-
من المفترض أن يتم التعامل مع هذا السطر كإضافة إلى المستند.
-
سيتم عرض هذا السطر كما هو مسطر.
-
من المفترض أن يتم التعامل مع هذا السطر على أنه طباعة جيدة.
-
تم تقديم هذا السطر كنص عريض.
-
تم تقديم هذا السطر كنص مائل.
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- بين كرسي والمعدات بالولايات تم. الذود اتّجة التقليدية يتم و, حيث وقرى.
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- - معقل الطريق واقتصار أم قام.
- - أمّا ولكسمبورغ ثم جُل, هو.
- - ان وبحلول لمحاكم الخارجية ومن.
- - بها بل العظمى إيطاليا الساحلية.
- - مدن قد وبحلول وأكثرها الدنمارك.
-
- - به، المشترك إتفاقية.
- - لإعادة الواقعة و.
- - وترك وانتهاءً ضرب.
- - الشتاء العالم، أي.
-
-
- - ودول يتسنّى بتطويق لمّ في.
- - بعض و مرمى يتسنّى, في.
- - أسيا اعلان ومحاولة عل انه.
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- - لمّ مع.
- - أم دون.
- - ذات بل.
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
- {{< placeholder width="100%" height="250" class="bd-placeholder-img-lg img-fluid" text="صورة مستجيبة" >}}
- {{< /example >}}
-
- {{< example show_markup="false" >}}
- {{< placeholder width="200" height="200" class="img-thumbnail" title="صورة عنصر نائب مربع عام مع حدود بيضاء حولها ، مما يجعلها تشبه صورة تم التقاطها بكاميرا فورية قديمة" >}}
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
- | # |
- الاسم الاول |
- الكنية |
- اسم مستعار |
-
-
-
-
- | 1 |
- Mark |
- Otto |
- @mdo |
-
-
- | 2 |
- Jacob |
- Thornton |
- @fat |
-
-
- | 3 |
- Larry the Bird |
- @twitter |
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
- | # |
- الاسم الاول |
- الكنية |
- اسم مستعار |
-
-
-
-
- | 1 |
- Mark |
- Otto |
- @mdo |
-
-
- | 2 |
- Jacob |
- Thornton |
- @fat |
-
-
- | 3 |
- Larry the Bird |
- @twitter |
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
- | Class |
- عنوان |
- عنوان |
-
-
-
-
- | Default |
- زنزانة |
- زنزانة |
-
- {{< table.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- | {{ .name | title }} |
- زنزانة |
- زنزانة |
-
- {{- end -}}
- {{< /table.inline >}}
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
- | # |
- الاسم الاول |
- الكنية |
- اسم مستعار |
-
-
-
-
- | 1 |
- Mark |
- Otto |
- @mdo |
-
-
- | 2 |
- Jacob |
- Thornton |
- @fat |
-
-
- | 3 |
- Larry the Bird |
- @twitter |
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- {{< placeholder width="400" height="300" class="figure-img img-fluid rounded" >}}
- شرح للصورة أعلاه.
-
- {{< /example >}}
-
-
-
-
-
-
-
- مكونات
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
-
-
- أخر جمعت اليها وحرمان بـ, لمّ حالية الربيع، ثم, بل حين سكان الأراضي. من سكان الإتفاقية عدم, بقصف واعتلاء بل جهة, ولم وبعد المؤلّفة هو. أمدها واقتصار ويكيبيديا إذ بعد, الطرفين والعتاد عل قبل. أدنى المؤلّفة إذ عدم, وبعد الثالث في جهة.
-
-
-
-
-
-
-
- أخر جمعت اليها وحرمان بـ, لمّ حالية الربيع، ثم, بل حين سكان الأراضي. من سكان الإتفاقية عدم, بقصف واعتلاء بل جهة, ولم وبعد المؤلّفة هو. أمدها واقتصار ويكيبيديا إذ بعد, الطرفين والعتاد عل قبل. أدنى المؤلّفة إذ عدم, وبعد الثالث في جهة.
-
-
-
-
-
-
-
- أخر جمعت اليها وحرمان بـ, لمّ حالية الربيع، ثم, بل حين سكان الأراضي. من سكان الإتفاقية عدم, بقصف واعتلاء بل جهة, ولم وبعد المؤلّفة هو. أمدها واقتصار ويكيبيديا إذ بعد, الطرفين والعتاد عل قبل. أدنى المؤلّفة إذ عدم, وبعد الثالث في جهة.
-
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
- {{< alerts.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- تنبيه {{ .name }} بسيط مع
رابط مثال. أعطها نقرة إذا أردت.
-
-
{{ end -}}
- {{< /alerts.inline >}}
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
أحسنت!
-
لقد نجحت في قراءة رسالة التنبيه المهمة هذه. سيتم تشغيل نص المثال هذا لفترة أطول قليلاً حتى تتمكن من رؤية كيفية عمل التباعد داخل التنبيه مع هذا النوع من المحتوى.
-
-
كلما احتجت إلى ذلك ، تأكد من استخدام أدوات الهامش للحفاظ على الأشياء لطيفة ومرتبة.
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
عنوان المثال جديد
-
عنوان المثال جديد
-
عنوان المثال جديد
-
عنوان المثال جديد
-
عنوان المثال جديد
-
عنوان المثال جديد
-
عنوان المثال جديد
-
عنوان المثال جديد
- {{< /example >}}
-
- {{< example show_markup="false" >}}
- {{< badge.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
{{ .name | title }}{{- end -}}
- {{< /badge.inline >}}
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
- {{< buttons.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- {{- end -}}
- {{< /buttons.inline >}}
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
- {{< buttons.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- {{- end -}}
- {{< /buttons.inline >}}
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
- {{< placeholder width="100%" height="180" class="card-img-top" text="غطاء الصورة" >}}
-
-
عنوان البطاقة
-
بعض الأمثلة السريعة للنصوص للبناء على عنوان البطاقة وتشكيل الجزء الأكبر من محتوى البطاقة.
-
اذهب لمكان ما
-
-
-
-
-
-
-
-
عنوان البطاقة
-
بعض الأمثلة السريعة للنصوص للبناء على عنوان البطاقة وتشكيل الجزء الأكبر من محتوى البطاقة.
-
اذهب لمكان ما
-
-
-
-
-
-
-
-
عنوان البطاقة
-
بعض الأمثلة السريعة للنصوص للبناء على عنوان البطاقة وتشكيل الجزء الأكبر من محتوى البطاقة.
-
-
- - أسر كل أراض.
- - شرسة مشارف واستمرت.
- - مكن إذ كانتا.
-
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="250" text="صورة" >}}
-
-
-
-
عنوان البطاقة
-
هذه بطاقة أوسع مع نص داعم أدناه كمقدمة طبيعية لمحتوى إضافي. هذا المحتوى أطول قليلاً.
-
آخر تحديث منذ 3 دقائق
-
-
-
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
-
-
-
-
-
- {{< placeholder width="800" height="400" class="bd-placeholder-img-lg d-block w-100" color="#555" background="#777" text="الشريحة الأولى" >}}
-
-
تسمية الشريحة الأولى
-
إستعمل تحرّكت المتحدة كان ما. لم وفي الشرقي المتاخمة تعد.
-
-
-
- {{< placeholder width="800" height="400" class="bd-placeholder-img-lg d-block w-100" color="#444" background="#666" text="الشريحة الثانية" >}}
-
-
تسمية الشريحة الثانية
-
أجزاء الخاسرة التّحول ٣٠ انه, وصل أن عالمية التحالف التجارية.
-
-
-
- {{< placeholder width="800" height="400" class="bd-placeholder-img-lg d-block w-100" color="#333" background="#555" text="الشريحة الثالثة" >}}
-
-
تسمية الشريحة الثالثة
-
ان فقد ترتيب والديون. وتتحمّل الحيلولة أخذ قد. ضرب بل.
-
-
-
-
-
- السابق
-
-
-
- التالى
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- - الفرنسية الأثناء، أي.
- - كلّ في تعداد.
- - وتم الأخذ أساسي.
- - لدحر بشرية ابتدعها.
- - لكون أسيا ولاتّساع.
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- - الفرنسية الأثناء، أي.
- - كلّ في تعداد.
- - وتم الأخذ أساسي.
- - لدحر بشرية ابتدعها.
- - لكون أسيا ولاتّساع.
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
-
هو أسيا والإتحاد أضف, فشكّل الإتفاقية ذلك في. اكتوبر والعتاد و لمّ, وفي أم ٢٠٠٤ وإقامة الانجليزية. وجزر المضي التقليدي ان أما. كلا لإنعدام استراليا، بـ, ٣٠ أضف بوابة أوزار مساعدة. ما السيطرة الأرضية دار, هو بال الساحة الموسوعة.
-
-
-
بفرض البشريةً ذلك أي, ٣٠ تنفّس ليركز الإطلاق جُل. يكن ألمّ أمام في. بفرض الصينية الخاسرة هو لها. ومن معاملة وحلفاؤها كل. بلا يعادل العظمى مع. بـ بحث وجزر الصعداء الأعمال, لكون نتيجة هذا من. مع ثانية أوروبا بحث, كلّ بتطويق واستمرت أن.
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
- {{< /example >}}
-
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
-
-
-
-
@fat
-
إنطلاق العالمي ما هذه, لم فسقط عُقر الهادي جُل. بعد ٣٠ شرسة النزاع اليميني. عن بحث اتّجة الصينية, مع وأزيز الفرنسية مدن, عدد مرجع العالمية لبلجيكا، أن. طوكيو أعلنت حيث بل. الأخذ واندونيسيا، إذ ذلك, به، قد معاملة وقوعها،. ولم التي إبّان بالفشل ٣٠, جنوب مشاركة حيث أم.
-
@mdo
-
بل الشتاء، بمحاولة جُل, فعل ببعض الأراضي مع. أما لم الأولى تكاليف, في بحشد جنوب الدول دون. في لمحاكم الإنزال تلك, أي بين الصفحة النزاع. عن دول فسقط احداث. وباءت التقليدي أم حيث, دنو ماذا واستمرت بل, غير ٣٠ بقعة هناك وفنلندا.
-
واحد
-
وزارة العاصمة الأوربيين حتى بـ. إذ دول مقاطعة بالرغم الأوروبي, كلّ هو نهاية لبولندا،, إذ مما ماشاء إتفاقية. إذ جهة تسبب وانتهاءً, تم تعد الذود أعلنت الأمريكية. ضرب نقطة حالية أن, ثم مارد للصين جديداً بين, بعد بل العظمى ابتدعها والفرنسي. ثم جعل يذكر ووصف, أثره، وعُرفت هو كان, بها قُدُماً البولندي ان. العالمي الجديدة، الفرنسية عرض كل.
-
اثنان
-
إذ قِبل أعلنت عرض. ما به، هاربر قتيل، الإكتفاء, أوزار المنتصر لبولندا، بلا بـ. وبدون بزمام وبحلول جُل أن, مكن أي لعدم مشارف. تم أخر دفّة وصغار وبالتحديد،, وقد اعلان العالم واشتدّت عن. أي حين الأولية لبولندا،, كما مايو وحتّى فرنسا ثم.
-
ثلاثة
-
لم هذا تسمّى إعادة مليون, ان يذكر فرنسا كما. إذ الدول الشتوية وأكثرها مدن. عرض بفرض بتحدّي الأوضاع تم. أحدث شاسعة تكبّد أخر من, ٣٠ حتى الخاطفة العالمية, هناك عالمية وقد لم. بشرية إتفاقية عل جهة, كل هُزم كانتا ضرب.
-
أن كلّ صفحة إعادة الأمريكية. بحث تشكيل ويعزى وتزويده بل. وحتّى وإعلان أن دار, من مكّن الصينية المشتّتون مكن, وبحلول للمجهود الأمريكي أن بحق. أم جهة وجهان الأرض.
-
-
-
-
-
-
-
-
- {{< example show_markup="false" >}}
- {{< spinner.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- جار التحميل...
-
- {{- end -}}
- {{< /spinner.inline >}}
- {{< /example >}}
-
- {{< example show_markup="false" >}}
- {{< spinner.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- جار التحميل...
-
- {{- end -}}
- {{< /spinner.inline >}}
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" class="bg-dark p-5 align-items-center" >}}
-
-
-
- مرحبا بالعالم! هذه رسالة نخب.
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" class="tooltip-demo" >}}
-
-
-
-
-
- {{< /example >}}
-
-
-
-
-
-
-
-
-
-
-
-
لن أغلق إذا نقرت خارج لي. لا تحاول حتى الضغط على مفتاح الهروب.
-
-
-
-
-
-
-
-
-
-
-
-
علاقة الشمال والفرنسي لها أن. المحيط الشهيرة البولندي دون أي, لم على مليون الثالث، بالسيطرة, نفس ان واحدة المجتمع والكوري. أي أثره، الأمم دار, مع وسفن وقام سكان انه. كان بهيئة الإمداد هو, بينما تطوير يعادل هذه بل, قد خيار يقوم أعلنت بلا. ما مسرح ٢٠٠٤ عدم, حصدت الصفحة المؤلّفة أخذ هو. هذا عل الدول الفرنسية, معقل مهمّات إذ مدن. تجهيز ألمانيا دار بل.
-
لان تم بسبب مئات الفترة. جهة تنفّس المشترك ٣٠, وباءت اوروبا دنو لم, أم جعل كرسي إختار وبريطانيا. مما رئيس الله الأثناء، ٣٠, الأمم الشتاء البولندي بين في, دول ان حلّت الأوروبيّون. بوابة العصبة البرية هو تحت, أضف أم الجوي أراضي, مدن العظمى قُدُماً ايطاليا، هو. حدى ثم تنفّس كنقطة, أن أما اعتداء واُسدل بالجانب.
-
انتهت اكتوبر واندونيسيا، حين بـ. غير بالرغم التقليدي في, و أما بزمام ا لإنعدام. هو كُلفة وانتهاءً حول. جُل مكّن الصين ان, ترتيب الأجل أوراقهم لها كل.
-
هذا وبعض قِبل من, هو ميناء فهرست قبضتهم يبق. كانت لهيمنة للإتحاد على إذ, بحشد مسرح بها أن. قد ومن الأوضاع اليابان للإتحاد, و قررت المارق عرض, أواخر محاولات بها قد. مايو لهيمنة بريطانيا مدن بل.
-
وفي الثالث، الإثنان من, أم وعلى مهمّات على, بـ فرنسية بولندا، لها. لمّ ان قامت تعديل المدن, ٣٠ لمحاكم المعاهدات إيو. كثيرة أدوات ويكيبيديا و بها, أم جدول العصبة بحث. أساسي معارضة بـ هذه, شيء مسرح واتّجه الشّعبين ٣٠. بينما واحدة إذ لمّ.
-
علاقة الشمال والفرنسي لها أن. المحيط الشهيرة البولندي دون أي, لم على مليون الثالث، بالسيطرة, نفس ان واحدة المجتمع والكوري. أي أثره، الأمم دار, مع وسفن وقام سكان انه. كان بهيئة الإمداد هو, بينما تطوير يعادل هذه بل, قد خيار يقوم أعلنت بلا. ما مسرح ٢٠٠٤ عدم, حصدت الصفحة المؤلّفة أخذ هو. هذا عل الدول الفرنسية, معقل مهمّات إذ مدن. تجهيز ألمانيا دار بل.
-
لان تم بسبب مئات الفترة. جهة تنفّس المشترك ٣٠, وباءت اوروبا دنو لم, أم جعل كرسي إختار وبريطانيا. مما رئيس الله الأثناء، ٣٠, الأمم الشتاء البولندي بين في, دول ان حلّت الأوروبيّون. بوابة العصبة البرية هو تحت, أضف أم الجوي أراضي, مدن العظمى قُدُماً ايطاليا، هو. حدى ثم تنفّس كنقطة, أن أما اعتداء واُسدل بالجانب.
-
انتهت اكتوبر واندونيسيا، حين بـ. غير بالرغم التقليدي في, و أما بزمام ا لإنعدام. هو كُلفة وانتهاءً حول. جُل مكّن الصين ان, ترتيب الأجل أوراقهم لها كل.
-
هذا وبعض قِبل من, هو ميناء فهرست قبضتهم يبق. كانت لهيمنة للإتحاد على إذ, بحشد مسرح بها أن. قد ومن الأوضاع اليابان للإتحاد, و قررت المارق عرض, أواخر محاولات بها قد. مايو لهيمنة بريطانيا مدن بل.
-
وفي الثالث، الإثنان من, أم وعلى مهمّات على, بـ فرنسية بولندا، لها. لمّ ان قامت تعديل المدن, ٣٠ لمحاكم المعاهدات إيو. كثيرة أدوات ويكيبيديا و بها, أم جدول العصبة بحث. أساسي معارضة بـ هذه, شيء مسرح واتّجه الشّعبين ٣٠. بينما واحدة إذ لمّ.
-
علاقة الشمال والفرنسي لها أن. المحيط الشهيرة البولندي دون أي, لم على مليون الثالث، بالسيطرة, نفس ان واحدة المجتمع والكوري. أي أثره، الأمم دار, مع وسفن وقام سكان انه. كان بهيئة الإمداد هو, بينما تطوير يعادل هذه بل, قد خيار يقوم أعلنت بلا. ما مسرح ٢٠٠٤ عدم, حصدت الصفحة المؤلّفة أخذ هو. هذا عل الدول الفرنسية, معقل مهمّات إذ مدن. تجهيز ألمانيا دار بل.
-
لان تم بسبب مئات الفترة. جهة تنفّس المشترك ٣٠, وباءت اوروبا دنو لم, أم جعل كرسي إختار وبريطانيا. مما رئيس الله الأثناء، ٣٠, الأمم الشتاء البولندي بين في, دول ان حلّت الأوروبيّون. بوابة العصبة البرية هو تحت, أضف أم الجوي أراضي, مدن العظمى قُدُماً ايطاليا، هو. حدى ثم تنفّس كنقطة, أن أما اعتداء واُسدل بالجانب.
-
انتهت اكتوبر واندونيسيا، حين بـ. غير بالرغم التقليدي في, و أما بزمام ا لإنعدام. هو كُلفة وانتهاءً حول. جُل مكّن الصين ان, ترتيب الأجل أوراقهم لها كل.
-
هذا وبعض قِبل من, هو ميناء فهرست قبضتهم يبق. كانت لهيمنة للإتحاد على إذ, بحشد مسرح بها أن. قد ومن الأوضاع اليابان للإتحاد, و قررت المارق عرض, أواخر محاولات بها قد. مايو لهيمنة بريطانيا مدن بل.
-
وفي الثالث، الإثنان من, أم وعلى مهمّات على, بـ فرنسية بولندا، لها. لمّ ان قامت تعديل المدن, ٣٠ لمحاكم المعاهدات إيو. كثيرة أدوات ويكيبيديا و بها, أم جدول العصبة بحث. أساسي معارضة بـ هذه, شيء مسرح واتّجه الشّعبين ٣٠. بينما واحدة إذ لمّ.
-
علاقة الشمال والفرنسي لها أن. المحيط الشهيرة البولندي دون أي, لم على مليون الثالث، بالسيطرة, نفس ان واحدة المجتمع والكوري. أي أثره، الأمم دار, مع وسفن وقام سكان انه. كان بهيئة الإمداد هو, بينما تطوير يعادل هذه بل, قد خيار يقوم أعلنت بلا. ما مسرح ٢٠٠٤ عدم, حصدت الصفحة المؤلّفة أخذ هو. هذا عل الدول الفرنسية, معقل مهمّات إذ مدن. تجهيز ألمانيا دار بل.
-
لان تم بسبب مئات الفترة. جهة تنفّس المشترك ٣٠, وباءت اوروبا دنو لم, أم جعل كرسي إختار وبريطانيا. مما رئيس الله الأثناء، ٣٠, الأمم الشتاء البولندي بين في, دول ان حلّت الأوروبيّون. بوابة العصبة البرية هو تحت, أضف أم الجوي أراضي, مدن العظمى قُدُماً ايطاليا، هو. حدى ثم تنفّس كنقطة, أن أما اعتداء واُسدل بالجانب.
-
انتهت اكتوبر واندونيسيا، حين بـ. غير بالرغم التقليدي في, و أما بزمام ا لإنعدام. هو كُلفة وانتهاءً حول. جُل مكّن الصين ان, ترتيب الأجل أوراقهم لها كل.
-
هذا وبعض قِبل من, هو ميناء فهرست قبضتهم يبق. كانت لهيمنة للإتحاد على إذ, بحشد مسرح بها أن. قد ومن الأوضاع اليابان للإتحاد, و قررت المارق عرض, أواخر محاولات بها قد. مايو لهيمنة بريطانيا مدن بل.
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/cheatsheet/cheatsheet.css b/site/content/docs/5.0/examples/cheatsheet/cheatsheet.css
deleted file mode 100644
index 77aa0f23c..000000000
--- a/site/content/docs/5.0/examples/cheatsheet/cheatsheet.css
+++ /dev/null
@@ -1,169 +0,0 @@
-body {
- scroll-behavior: smooth;
-}
-
-/**
- * Bootstrap "Journal code" icon
- * @link https://icons.getbootstrap.com/icons/journal-code/
- */
-.bd-heading a::before {
- display: inline-block;
- width: 1em;
- height: 1em;
- margin-right: .25rem;
- content: "";
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%25230d6efd' viewBox='0 0 16 16'%3E%3Cpath d='M4 1h8a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2h1a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1H2a2 2 0 0 1 2-2z'/%3E%3Cpath d='M2 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H2zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H2zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H2z'/%3E%3Cpath fill-rule='evenodd' d='M8.646 5.646a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L10.293 8 8.646 6.354a.5.5 0 0 1 0-.708zm-1.292 0a.5.5 0 0 0-.708 0l-2 2a.5.5 0 0 0 0 .708l2 2a.5.5 0 0 0 .708-.708L5.707 8l1.647-1.646a.5.5 0 0 0 0-.708z'/%3E%3C/svg%3E");
- background-size: 1em;
-}
-
-/* stylelint-disable-next-line selector-max-universal */
-.bd-heading + div > * + * {
- margin-top: 3rem;
-}
-
-/* Table of contents */
-.bd-aside a {
- padding: .1875rem .5rem;
- margin-top: .125rem;
- margin-left: .3125rem;
- color: rgba(0, 0, 0, .65);
- text-decoration: none;
-}
-
-.bd-aside a:hover,
-.bd-aside a:focus {
- color: rgba(0, 0, 0, .85);
- background-color: rgba(121, 82, 179, .1);
-}
-
-.bd-aside .active {
- font-weight: 600;
- color: rgba(0, 0, 0, .85);
-}
-
-.bd-aside .btn {
- padding: .25rem .5rem;
- font-weight: 600;
- color: rgba(0, 0, 0, .65);
- border: 0;
-}
-
-.bd-aside .btn:hover,
-.bd-aside .btn:focus {
- color: rgba(0, 0, 0, .85);
- background-color: rgba(121, 82, 179, .1);
-}
-
-.bd-aside .btn:focus {
- box-shadow: 0 0 0 1px rgba(121, 82, 179, .7);
-}
-
-.bd-aside .btn::before {
- width: 1.25em;
- line-height: 0;
- content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
- transition: transform .35s ease;
-
- /* rtl:raw:
- transform: rotate(180deg) translateX(-2px);
- */
- transform-origin: .5em 50%;
-}
-
-.bd-aside .btn[aria-expanded="true"]::before {
- transform: rotate(90deg)/* rtl:ignore */;
-}
-
-
-/* Examples */
-.scrollspy-example {
- position: relative;
- height: 200px;
- margin-top: .5rem;
- overflow: auto;
-}
-
-[id="modal"] .bd-example .btn,
-[id="buttons"] .bd-example .btn,
-[id="tooltips"] .bd-example .btn,
-[id="popovers"] .bd-example .btn,
-[id="dropdowns"] .bd-example .btn-group,
-[id="dropdowns"] .bd-example .dropdown,
-[id="dropdowns"] .bd-example .dropup,
-[id="dropdowns"] .bd-example .dropend,
-[id="dropdowns"] .bd-example .dropstart {
- margin: 0 1rem 1rem 0;
-}
-
-/* Layout */
-@media (min-width: 1200px) {
- body {
- display: grid;
- gap: 1rem;
- grid-template-columns: 1fr 4fr 1fr;
- grid-template-rows: auto;
- }
-
- .bd-header {
- position: fixed;
- top: 0;
- /* rtl:begin:ignore */
- right: 0;
- left: 0;
- /* rtl:end:ignore */
- z-index: 1030;
- grid-column: 1 / span 3;
- }
-
- .bd-aside,
- .bd-cheatsheet {
- padding-top: 4rem;
- }
-
- /**
- * 1. Too bad only Firefox supports subgrids ATM
- */
- .bd-cheatsheet,
- .bd-cheatsheet section,
- .bd-cheatsheet article {
- display: inherit; /* 1 */
- gap: inherit; /* 1 */
- grid-template-columns: 1fr 4fr;
- grid-column: 1 / span 2;
- grid-template-rows: auto;
- }
-
- .bd-aside {
- grid-area: 1 / 3;
- scroll-margin-top: 4rem;
- }
-
- .bd-cheatsheet section,
- .bd-cheatsheet section > h2 {
- top: 2rem;
- scroll-margin-top: 2rem;
- }
-
- .bd-cheatsheet section > h2::before {
- position: absolute;
- /* rtl:begin:ignore */
- top: 0;
- right: 0;
- bottom: -2rem;
- left: 0;
- /* rtl:end:ignore */
- z-index: -1;
- content: "";
- background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) calc(100% - 3rem), rgba(255, 255, 255, .01));
- }
-
- .bd-cheatsheet article,
- .bd-cheatsheet .bd-heading {
- top: 8rem;
- scroll-margin-top: 8rem;
- }
-
- .bd-cheatsheet .bd-heading {
- z-index: 1;
- }
-}
diff --git a/site/content/docs/5.0/examples/cheatsheet/cheatsheet.js b/site/content/docs/5.0/examples/cheatsheet/cheatsheet.js
deleted file mode 100644
index 541cf9350..000000000
--- a/site/content/docs/5.0/examples/cheatsheet/cheatsheet.js
+++ /dev/null
@@ -1,68 +0,0 @@
-/* global bootstrap: false */
-
-(function () {
- 'use strict'
-
- // Tooltip and popover demos
- document.querySelectorAll('.tooltip-demo')
- .forEach(function (tooltip) {
- new bootstrap.Tooltip(tooltip, {
- selector: '[data-bs-toggle="tooltip"]'
- })
- })
-
- document.querySelectorAll('[data-bs-toggle="popover"]')
- .forEach(function (popover) {
- new bootstrap.Popover(popover)
- })
-
- document.querySelectorAll('.toast')
- .forEach(function (toastNode) {
- var toast = new bootstrap.Toast(toastNode, {
- autohide: false
- })
-
- toast.show()
- })
-
- // Disable empty links
- document.querySelectorAll('[href="#"]')
- .forEach(function (link) {
- link.addEventListener('click', function (event) {
- event.preventDefault()
- })
- })
-
- function setActiveItem() {
- var hash = window.location.hash
-
- if (hash === '') {
- return
- }
-
- var link = document.querySelector('.bd-aside a[href="' + hash + '"]')
- var active = document.querySelector('.bd-aside .active')
- var parent = link.parentNode.parentNode.previousElementSibling
-
- link.classList.add('active')
-
- if (parent.classList.contains('collapsed')) {
- parent.click()
- }
-
- if (!active) {
- return
- }
-
- var expanded = active.parentNode.parentNode.previousElementSibling
-
- active.classList.remove('active')
-
- if (expanded && parent !== expanded) {
- expanded.click()
- }
- }
-
- setActiveItem()
- window.addEventListener('hashchange', setActiveItem)
-})()
diff --git a/site/content/docs/5.0/examples/cheatsheet/cheatsheet.rtl.css b/site/content/docs/5.0/examples/cheatsheet/cheatsheet.rtl.css
deleted file mode 100644
index c1a4a1ccc..000000000
--- a/site/content/docs/5.0/examples/cheatsheet/cheatsheet.rtl.css
+++ /dev/null
@@ -1,162 +0,0 @@
-body {
- scroll-behavior: smooth;
-}
-
-/**
- * Bootstrap "Journal code" icon
- * @link https://icons.getbootstrap.com/icons/journal-code/
- */
-.bd-heading a::before {
- display: inline-block;
- width: 1em;
- height: 1em;
- margin-left: .25rem;
- content: "";
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%25230d6efd' viewBox='0 0 16 16'%3E%3Cpath d='M4 1h8a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2h1a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1H2a2 2 0 0 1 2-2z'/%3E%3Cpath d='M2 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H2zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H2zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H2z'/%3E%3Cpath fill-rule='evenodd' d='M8.646 5.646a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L10.293 8 8.646 6.354a.5.5 0 0 1 0-.708zm-1.292 0a.5.5 0 0 0-.708 0l-2 2a.5.5 0 0 0 0 .708l2 2a.5.5 0 0 0 .708-.708L5.707 8l1.647-1.646a.5.5 0 0 0 0-.708z'/%3E%3C/svg%3E");
- background-size: 1em;
-}
-
-/* stylelint-disable-next-line selector-max-universal */
-.bd-heading + div > * + * {
- margin-top: 3rem;
-}
-
-/* Table of contents */
-.bd-aside a {
- padding: .1875rem .5rem;
- margin-top: .125rem;
- margin-right: .3125rem;
- color: rgba(0, 0, 0, .65);
- text-decoration: none;
-}
-
-.bd-aside a:hover,
-.bd-aside a:focus {
- color: rgba(0, 0, 0, .85);
- background-color: rgba(121, 82, 179, .1);
-}
-
-.bd-aside .active {
- font-weight: 600;
- color: rgba(0, 0, 0, .85);
-}
-
-.bd-aside .btn {
- padding: .25rem .5rem;
- font-weight: 600;
- color: rgba(0, 0, 0, .65);
- border: 0;
-}
-
-.bd-aside .btn:hover,
-.bd-aside .btn:focus {
- color: rgba(0, 0, 0, .85);
- background-color: rgba(121, 82, 179, .1);
-}
-
-.bd-aside .btn:focus {
- box-shadow: 0 0 0 1px rgba(121, 82, 179, .7);
-}
-
-.bd-aside .btn::before {
- width: 1.25em;
- line-height: 0;
- content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
- transition: transform .35s ease;
- transform: rotate(180deg) translateX(-2px);
- transform-origin: .5em 50%;
-}
-
-.bd-aside .btn[aria-expanded="true"]::before {
- transform: rotate(90deg);
-}
-
-
-/* Examples */
-.scrollspy-example {
- position: relative;
- height: 200px;
- margin-top: .5rem;
- overflow: auto;
-}
-
-[id="modal"] .bd-example .btn,
-[id="buttons"] .bd-example .btn,
-[id="tooltips"] .bd-example .btn,
-[id="popovers"] .bd-example .btn,
-[id="dropdowns"] .bd-example .btn-group,
-[id="dropdowns"] .bd-example .dropdown,
-[id="dropdowns"] .bd-example .dropup,
-[id="dropdowns"] .bd-example .dropend,
-[id="dropdowns"] .bd-example .dropstart {
- margin: 0 0 1rem 1rem;
-}
-
-/* Layout */
-@media (min-width: 1200px) {
- body {
- display: grid;
- gap: 1rem;
- grid-template-columns: 1fr 4fr 1fr;
- grid-template-rows: auto;
- }
-
- .bd-header {
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- z-index: 1030;
- grid-column: 1 / span 3;
- }
-
- .bd-aside,
- .bd-cheatsheet {
- padding-top: 4rem;
- }
-
- /**
- * 1. Too bad only Firefox supports subgrids ATM
- */
- .bd-cheatsheet,
- .bd-cheatsheet section,
- .bd-cheatsheet article {
- display: inherit; /* 1 */
- gap: inherit; /* 1 */
- grid-template-columns: 1fr 4fr;
- grid-column: 1 / span 2;
- grid-template-rows: auto;
- }
-
- .bd-aside {
- grid-area: 1 / 3;
- scroll-margin-top: 4rem;
- }
-
- .bd-cheatsheet section,
- .bd-cheatsheet section > h2 {
- top: 2rem;
- scroll-margin-top: 2rem;
- }
-
- .bd-cheatsheet section > h2::before {
- position: absolute;
- top: 0;
- right: 0;
- bottom: -2rem;
- left: 0;
- z-index: -1;
- content: "";
- background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) calc(100% - 3rem), rgba(255, 255, 255, .01));
- }
-
- .bd-cheatsheet article,
- .bd-cheatsheet .bd-heading {
- top: 8rem;
- scroll-margin-top: 8rem;
- }
-
- .bd-cheatsheet .bd-heading {
- z-index: 1;
- }
-}
diff --git a/site/content/docs/5.0/examples/cheatsheet/index.html b/site/content/docs/5.0/examples/cheatsheet/index.html
deleted file mode 100644
index 39637a487..000000000
--- a/site/content/docs/5.0/examples/cheatsheet/index.html
+++ /dev/null
@@ -1,1598 +0,0 @@
----
-layout: examples
-title: Cheatsheet
-extra_css:
- - "cheatsheet.css"
-extra_js:
- - src: "cheatsheet.js"
-body_class: "bg-light"
----
-
-
-
-
-
- Contents
-
-
-
-
-
- {{< example show_markup="false" >}}
-
Display 1
-
Display 2
-
Display 3
-
Display 4
-
Display 5
-
Display 6
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
Heading 1
-
Heading 2
-
Heading 3
-
Heading 4
-
Heading 5
-
Heading 6
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- This is a lead paragraph. It stands out from regular paragraphs.
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
You can use the mark tag to highlight text.
-
This line of text is meant to be treated as deleted text.
-
This line of text is meant to be treated as no longer accurate.
-
This line of text is meant to be treated as an addition to the document.
-
This line of text will render as underlined.
-
This line of text is meant to be treated as fine print.
-
This line rendered as bold text.
-
This line rendered as italicized text.
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- A well-known quote, contained in a blockquote element.
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- - This is a list.
- - It appears completely unstyled.
- - Structurally, it's still a list.
- - However, this style only applies to immediate child elements.
- - Nested lists:
-
- - are unaffected by this style
- - will still show a bullet
- - and have appropriate left margin
-
-
- - This may still come in handy in some situations.
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- - This is a list item.
- - And another one.
- - But they're displayed inline.
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
- {{< placeholder width="100%" height="250" class="bd-placeholder-img-lg img-fluid" text="Responsive image" >}}
- {{< /example >}}
-
- {{< example show_markup="false" >}}
- {{< placeholder width="200" height="200" class="img-thumbnail" title="A generic square placeholder image with a white border around it, making it resemble a photograph taken with an old instant camera" >}}
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
- | # |
- First |
- Last |
- Handle |
-
-
-
-
- | 1 |
- Mark |
- Otto |
- @mdo |
-
-
- | 2 |
- Jacob |
- Thornton |
- @fat |
-
-
- | 3 |
- Larry the Bird |
- @twitter |
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
- | # |
- First |
- Last |
- Handle |
-
-
-
-
- | 1 |
- Mark |
- Otto |
- @mdo |
-
-
- | 2 |
- Jacob |
- Thornton |
- @fat |
-
-
- | 3 |
- Larry the Bird |
- @twitter |
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
- | Class |
- Heading |
- Heading |
-
-
-
-
- | Default |
- Cell |
- Cell |
-
- {{< table.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- | {{ .name | title }} |
- Cell |
- Cell |
-
- {{- end -}}
- {{< /table.inline >}}
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
- | # |
- First |
- Last |
- Handle |
-
-
-
-
- | 1 |
- Mark |
- Otto |
- @mdo |
-
-
- | 2 |
- Jacob |
- Thornton |
- @fat |
-
-
- | 3 |
- Larry the Bird |
- @twitter |
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- {{< placeholder width="400" height="300" class="figure-img img-fluid rounded" >}}
- A caption for the above image.
-
- {{< /example >}}
-
-
-
-
-
-
-
- Components
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
-
-
- This is the first item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.
-
-
-
-
-
-
-
- This is the second item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.
-
-
-
-
-
-
-
- This is the third item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow.
-
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
- {{< alerts.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- A simple {{ .name }} alert with
an example link. Give it a click if you like.
-
-
{{ end -}}
- {{< /alerts.inline >}}
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
Well done!
-
Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.
-
-
Whenever you need to, be sure to use margin utilities to keep things nice and tidy.
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
Example heading New
-
Example heading New
-
Example heading New
-
Example heading New
-
Example heading New
-
Example heading New
-
Example heading New
-
Example heading New
- {{< /example >}}
-
- {{< example show_markup="false" >}}
- {{< badge.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
{{ .name | title }}{{- end -}}
- {{< /badge.inline >}}
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
- {{< buttons.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- {{- end -}}
- {{< /buttons.inline >}}
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
- {{< buttons.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- {{- end -}}
- {{< /buttons.inline >}}
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
- {{< placeholder width="100%" height="180" class="card-img-top" text="Image cap" >}}
-
-
Card title
-
Some quick example text to build on the card title and make up the bulk of the card's content.
-
Go somewhere
-
-
-
-
-
-
-
-
Card title
-
Some quick example text to build on the card title and make up the bulk of the card's content.
-
Go somewhere
-
-
-
-
-
-
-
-
Card title
-
Some quick example text to build on the card title and make up the bulk of the card's content.
-
-
- - An item
- - A second item
- - A third item
-
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="250" text="Image" >}}
-
-
-
-
Card title
-
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
Last updated 3 mins ago
-
-
-
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
-
-
-
-
-
- {{< placeholder width="800" height="400" class="bd-placeholder-img-lg d-block w-100" color="#555" background="#777" text="First slide" >}}
-
-
First slide label
-
Some representative placeholder content for the first slide.
-
-
-
- {{< placeholder width="800" height="400" class="bd-placeholder-img-lg d-block w-100" color="#444" background="#666" text="Second slide" >}}
-
-
Second slide label
-
Some representative placeholder content for the second slide.
-
-
-
- {{< placeholder width="800" height="400" class="bd-placeholder-img-lg d-block w-100" color="#333" background="#555" text="Third slide" >}}
-
-
Third slide label
-
Some representative placeholder content for the third slide.
-
-
-
-
-
- Previous
-
-
-
- Next
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- - A disabled item
- - A second item
- - A third item
- - A fourth item
- - And a fifth one
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- - An item
- - A second item
- - A third item
- - A fourth item
- - And a fifth one
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
-
Placeholder content for the tab panel. This one relates to the home tab. Takes you miles high, so high, 'cause she’s got that one international smile. There's a stranger in my bed, there's a pounding in my head. Oh, no. In another life I would make you stay. ‘Cause I, I’m capable of anything. Suiting up for my crowning battle. Used to steal your parents' liquor and climb to the roof. Tone, tan fit and ready, turn it up cause its gettin' heavy. Her love is like a drug. I guess that I forgot I had a choice.
-
-
-
Placeholder content for the tab panel. This one relates to the profile tab. You got the finest architecture. Passport stamps, she's cosmopolitan. Fine, fresh, fierce, we got it on lock. Never planned that one day I'd be losing you. She eats your heart out. Your kiss is cosmic, every move is magic. I mean the ones, I mean like she's the one. Greetings loved ones let's take a journey. Just own the night like the 4th of July! But you'd rather get wasted.
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
- {{< /example >}}
-
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
-
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" >}}
-
-
-
-
-
- {{< /example >}}
-
- {{< example show_markup="false" >}}
-
- {{< /example >}}
-
-
-
-
-
-
-
-
-
-
@fat
-
Placeholder content for the scrollspy example. You got the finest architecture. Passport stamps, she's cosmopolitan. Fine, fresh, fierce, we got it on lock. Never planned that one day I'd be losing you. She eats your heart out. Your kiss is cosmic, every move is magic. I mean the ones, I mean like she's the one. Greetings loved ones let's take a journey. Just own the night like the 4th of July! But you'd rather get wasted.
-
@mdo
-
Placeholder content for the scrollspy example. 'Cause she's the muse and the artist. (This is how we do) So you wanna play with magic. So just be sure before you give it all to me. I'm walking, I'm walking on air (tonight). Skip the talk, heard it all, time to walk the walk.
-
one
-
Placeholder content for the scrollspy example. Takes you miles high, so high, 'cause she’s got that one international smile. There's a stranger in my bed, there's a pounding in my head. Oh, no. In another life I would make you stay. ‘Cause I, I’m capable of anything. Suiting up for my crowning battle. Used to steal your parents' liquor and climb to the roof. Tone, tan fit and ready, turn it up cause its gettin' heavy. Her love is like a drug. I guess that I forgot I had a choice.
-
two
-
Placeholder content for the scrollspy example. It's time to bring out the big balloons. I'm walking, I'm walking on air (tonight). Yeah, we maxed our credit cards and got kicked out of the bar. Yo, shout out to all you kids, buying bottle service, with your rent money. I'm ma get your heart racing in my skin-tight jeans. If you get the chance you better keep her. Yo, shout out to all you kids, buying bottle service, with your rent money.
-
three
-
Placeholder content for the scrollspy example. If you wanna dance, if you want it all, you know that I'm the girl that you should call. Walk through the storm I would. So let me get you in your birthday suit. The one that got away. Last Friday night, yeah I think we broke the law, always say we're gonna stop. 'Cause she's a little bit of Yoko, And she's a little bit of 'Oh no'. I want the jaw droppin', eye poppin', head turnin', body shockin'. Yeah, we maxed our credit cards and got kicked out of the bar.
-
And some more placeholder content, for good measure.
-
-
-
-
-
-
-
-
- {{< example show_markup="false" >}}
- {{< spinner.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- Loading...
-
- {{- end -}}
- {{< /spinner.inline >}}
- {{< /example >}}
-
- {{< example show_markup="false" >}}
- {{< spinner.inline >}}
- {{- range (index $.Site.Data "theme-colors") }}
-
- Loading...
-
- {{- end -}}
- {{< /spinner.inline >}}
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" class="bg-dark p-5 align-items-center" >}}
-
-
-
- Hello, world! This is a toast message.
-
-
- {{< /example >}}
-
-
-
-
-
-
- {{< example show_markup="false" class="tooltip-demo" >}}
-
-
-
-
-
- {{< /example >}}
-
-
-
-
-
-
-
-
-
-
-
-
I will not close if you click outside me. Don't even try to press escape key.
-
-
-
-
-
-
-
-
-
-
-
-
What follows is just some placeholder text for this modal dialog. I feel like I'm already there. I’m gon’ put her in a coma. Boom, boom, boom. You're reading me like erotica, boy, you make me feel exotic, yeah. Happy birthday. From Tokyo to Mexico, to Rio. I knew you were.
-
Last Friday night. Calling out my name. Kiss her, touch her, squeeze her buns. Heavy is the head that wears the crown. So open up your heart and just let it begin. Boy all this time was worth the waiting. You know that I'm the girl that you should call. End of the rainbow looking treasure. You're reading me like erotica, boy, you make me feel exotic, yeah. Do you know that there's still a chance for you 'Cause there's a spark in you? So I sat quietly, agreed politely. From Tokyo to Mexico, to Rio.
-
Don't be a shy kinda guy I'll bet it's beautiful. You fall asleep during foreplay, 'Cause the pills you take, are more your forte. Open up your heart. You're never gonna be unsatisfied. Know that you are worthy. This one goes out to the ladies at breakfast in last night's dress. You think you've seen her in a magazine. I should've told you what you meant to me 'Cause now I pay the price. Takes you miles high, so high, 'cause she’s got that one international smile.
-
Yo, shout out to all you kids, buying bottle service, with your rent money. So I sat quietly, agreed politely. They say, be afraid you're not like the others, futuristic lover. Boom, boom, boom. Don't need apologies. We can dance, until we die, you and I, will be young forever. If you choose to walk away, don’t walk away. You know that I'm the girl that you should call. This Friday night, do it all again.
-
I'm walking on air. But lil' mama so dope. It's time to bring out the big balloons. Are you ready for, ready for. The boys break their necks try'na to creep a little sneak peek. Summer after high school when we first met. If you want it all. (This is how we do) You open my eyes and I'm ready to go, lead me into the light.
-
Growing fast into a bolt of lightning. We freak in my jeep, Snoop Doggy Dogg on the stereo. Baby do you dare to do this? Open up your heart and just let it begin. Peach-pink lips, yeah, everybody stares. Be your teenage dream tonight. Are you brave enough to let me see your peacock? You think I'm funny when I tell the punchline wrong. Woo! I knew you were. All this money can't buy me a time machine. I can't sleep let's run away and don't ever look back, don't ever look back.
-
Make it like your birthday everyday. I'm not sticking around to watch you go down. Uh-huh, I see you. For you I'll risk it all, all. I’m gon’ put her in a coma. She ride me like a roller coaster. You hear my voice, you hear that sound. 'Cause I will love you unconditionally (oh yeah). They say, be afraid you're not like the others, futuristic lover. There is no fear now, let go and just be free, I will love you unconditionally.
-
We can dance, until we die, you and I, will be young forever. Pop your Pérignon. Last Friday night, yeah I think we broke the law, always say we're gonna stop. Don't need apologies. Give you something good to celebrate. But don’t make me your enemy, your enemy, your enemy. Flowers in her hair, she don't care. Tone, tan fit and ready, turn it up cause its gettin' heavy.
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/checkout-rtl/index.html b/site/content/docs/5.0/examples/checkout-rtl/index.html
deleted file mode 100644
index 5839cb112..000000000
--- a/site/content/docs/5.0/examples/checkout-rtl/index.html
+++ /dev/null
@@ -1,232 +0,0 @@
----
-layout: examples
-title: مثال الخروج
-direction: rtl
-extra_css:
- - "../checkout/form-validation.css"
-extra_js:
- - src: "../checkout/form-validation.js"
-body_class: "bg-light"
----
-
-
-
-
-

-
نموذج الخروج
-
فيما يلي مثال على نموذج تم إنشاؤه بالكامل باستخدام عناصر تحكم النموذج في Bootstrap. لكل مجموعة نماذج مطلوبة حالة تحقق يمكن تشغيلها بمحاولة إرسال النموذج دون استكماله.
-
-
-
-
-
- عربتك
- 3
-
-
- -
-
-
اسم المنتج
- وصف مختصر
-
- $12
-
- -
-
-
المنتج الثاني
- وصف مختصر
-
- $8
-
- -
-
-
البند الثالث
- وصف مختصر
-
- $5
-
- -
-
-
رمز ترويجي
- EXAMPLECODE
-
- -$5
-
- -
- مجموع (USD)
- $20
-
-
-
-
-
-
-
عنوان وصول الفواتير
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/checkout/form-validation.css b/site/content/docs/5.0/examples/checkout/form-validation.css
deleted file mode 100644
index e5ea31c40..000000000
--- a/site/content/docs/5.0/examples/checkout/form-validation.css
+++ /dev/null
@@ -1,3 +0,0 @@
-.container {
- max-width: 960px;
-}
diff --git a/site/content/docs/5.0/examples/checkout/form-validation.js b/site/content/docs/5.0/examples/checkout/form-validation.js
deleted file mode 100644
index f8fd583de..000000000
--- a/site/content/docs/5.0/examples/checkout/form-validation.js
+++ /dev/null
@@ -1,20 +0,0 @@
-// Example starter JavaScript for disabling form submissions if there are invalid fields
-(function () {
- 'use strict'
-
- // Fetch all the forms we want to apply custom Bootstrap validation styles to
- var forms = document.querySelectorAll('.needs-validation')
-
- // Loop over them and prevent submission
- Array.prototype.slice.call(forms)
- .forEach(function (form) {
- form.addEventListener('submit', function (event) {
- if (!form.checkValidity()) {
- event.preventDefault()
- event.stopPropagation()
- }
-
- form.classList.add('was-validated')
- }, false)
- })
-})()
diff --git a/site/content/docs/5.0/examples/checkout/index.html b/site/content/docs/5.0/examples/checkout/index.html
deleted file mode 100644
index fc9cfb6f8..000000000
--- a/site/content/docs/5.0/examples/checkout/index.html
+++ /dev/null
@@ -1,232 +0,0 @@
----
-layout: examples
-title: Checkout example
-extra_css:
- - "form-validation.css"
-extra_js:
- - src: "form-validation.js"
-body_class: "bg-light"
----
-
-
-
-
-

-
Checkout form
-
Below is an example form built entirely with Bootstrap’s form controls. Each required form group has a validation state that can be triggered by attempting to submit the form without completing it.
-
-
-
-
-
- Your cart
- 3
-
-
- -
-
-
Product name
- Brief description
-
- $12
-
- -
-
-
Second product
- Brief description
-
- $8
-
- -
-
-
Third item
- Brief description
-
- $5
-
- -
-
-
Promo code
- EXAMPLECODE
-
- −$5
-
- -
- Total (USD)
- $20
-
-
-
-
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/cover/index.html b/site/content/docs/5.0/examples/cover/index.html
deleted file mode 100644
index 10362083e..000000000
--- a/site/content/docs/5.0/examples/cover/index.html
+++ /dev/null
@@ -1,34 +0,0 @@
----
-layout: examples
-title: Cover Template
-extra_css:
- - "cover.css"
-html_class: "h-100"
-body_class: "d-flex h-100 text-center text-white bg-dark"
-include_js: false
----
-
-
-
-
-
- Cover your page.
- Cover is a one-page template for building simple and beautiful home pages. Download, edit the text, and add your own fullscreen background photo to make it your own.
-
- Learn more
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/dashboard-rtl/dashboard.js b/site/content/docs/5.0/examples/dashboard-rtl/dashboard.js
deleted file mode 100644
index 2a511ef8b..000000000
--- a/site/content/docs/5.0/examples/dashboard-rtl/dashboard.js
+++ /dev/null
@@ -1,53 +0,0 @@
-/* globals Chart:false, feather:false */
-
-(function () {
- 'use strict'
-
- feather.replace()
-
- // Graphs
- var ctx = document.getElementById('myChart')
- // eslint-disable-next-line no-unused-vars
- var myChart = new Chart(ctx, {
- type: 'line',
- data: {
- labels: [
- 'الأحد',
- 'الإثنين',
- 'الثلاثاء',
- 'الأربعاء',
- 'الخميس',
- 'يوم الجمعة',
- 'يوم السبت'
- ],
- datasets: [{
- data: [
- 15339,
- 21345,
- 18483,
- 24003,
- 23489,
- 24092,
- 12034
- ],
- lineTension: 0,
- backgroundColor: 'transparent',
- borderColor: '#007bff',
- borderWidth: 4,
- pointBackgroundColor: '#007bff'
- }]
- },
- options: {
- scales: {
- yAxes: [{
- ticks: {
- beginAtZero: false
- }
- }]
- },
- legend: {
- display: false
- }
- }
- })
-})()
diff --git a/site/content/docs/5.0/examples/dashboard-rtl/index.html b/site/content/docs/5.0/examples/dashboard-rtl/index.html
deleted file mode 100644
index 848c67c0b..000000000
--- a/site/content/docs/5.0/examples/dashboard-rtl/index.html
+++ /dev/null
@@ -1,253 +0,0 @@
----
-layout: examples
-title: قالب لوحة القيادة
-direction: rtl
-extra_css:
- - "../dashboard/dashboard.rtl.css"
-extra_js:
- - src: "https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.24.1/feather.min.js"
- integrity: "sha384-EbSscX4STvYAC/DxHse8z5gEDaNiKAIGW+EpfzYTfQrgIlHywXXrM9SUIZ0BlyfF"
- - src: "https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.js"
- integrity: "sha384-i+dHPTzZw7YVZOx9lbH5l6lP74sLRtMtwN2XjVqjf3uAGAREAF4LMIUDTWEVs4LI"
- - src: "dashboard.js"
----
-
-
-
-
-
-
-
-
-
-
-
-
- عنوان القسم
-
-
-
-
- | # |
- العنوان |
- العنوان |
- العنوان |
- العنوان |
-
-
-
-
- | 1,001 |
- أم. |
- و. |
- ثمّة. |
- ويتّفق. |
-
-
- | 1,002 |
- أضف. |
- ما. |
- من. |
- أم. |
-
-
- | 1,003 |
- دار. |
- ذلك. |
- يبق. |
- المتحدة. |
-
-
- | 1,003 |
- فكانت. |
- الخارجية. |
- الآخر. |
- حتى. |
-
-
- | 1,004 |
- أم. |
- و. |
- ثمّة. |
- ويتّفق. |
-
-
- | 1,005 |
- أضف. |
- ما. |
- من. |
- أم. |
-
-
- | 1,006 |
- دار. |
- ذلك. |
- يبق. |
- المتحدة. |
-
-
- | 1,007 |
- أم. |
- و. |
- ثمّة. |
- ويتّفق. |
-
-
- | 1,008 |
- أضف. |
- ما. |
- من. |
- أم. |
-
-
- | 1,009 |
- دار. |
- ذلك. |
- يبق. |
- المتحدة. |
-
-
- | 1,010 |
- أم. |
- و. |
- ثمّة. |
- ويتّفق. |
-
-
- | 1,011 |
- أضف. |
- ما. |
- من. |
- أم. |
-
-
- | 1,012 |
- دار. |
- ذلك. |
- يبق. |
- المتحدة. |
-
-
- | 1,013 |
- أم. |
- و. |
- ثمّة. |
- ويتّفق. |
-
-
- | 1,014 |
- أضف. |
- ما. |
- من. |
- أم. |
-
-
- | 1,015 |
- دار. |
- ذلك. |
- يبق. |
- المتحدة. |
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/dashboard/dashboard.js b/site/content/docs/5.0/examples/dashboard/dashboard.js
deleted file mode 100644
index d3f549928..000000000
--- a/site/content/docs/5.0/examples/dashboard/dashboard.js
+++ /dev/null
@@ -1,53 +0,0 @@
-/* globals Chart:false, feather:false */
-
-(function () {
- 'use strict'
-
- feather.replace()
-
- // Graphs
- var ctx = document.getElementById('myChart')
- // eslint-disable-next-line no-unused-vars
- var myChart = new Chart(ctx, {
- type: 'line',
- data: {
- labels: [
- 'Sunday',
- 'Monday',
- 'Tuesday',
- 'Wednesday',
- 'Thursday',
- 'Friday',
- 'Saturday'
- ],
- datasets: [{
- data: [
- 15339,
- 21345,
- 18483,
- 24003,
- 23489,
- 24092,
- 12034
- ],
- lineTension: 0,
- backgroundColor: 'transparent',
- borderColor: '#007bff',
- borderWidth: 4,
- pointBackgroundColor: '#007bff'
- }]
- },
- options: {
- scales: {
- yAxes: [{
- ticks: {
- beginAtZero: false
- }
- }]
- },
- legend: {
- display: false
- }
- }
- })
-})()
diff --git a/site/content/docs/5.0/examples/dashboard/dashboard.rtl.css b/site/content/docs/5.0/examples/dashboard/dashboard.rtl.css
deleted file mode 100644
index 2406ce5cc..000000000
--- a/site/content/docs/5.0/examples/dashboard/dashboard.rtl.css
+++ /dev/null
@@ -1,96 +0,0 @@
-body {
- font-size: .875rem;
-}
-
-.feather {
- width: 16px;
- height: 16px;
- vertical-align: text-bottom;
-}
-
-/*
- * Sidebar
- */
-
-.sidebar {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 100; /* Behind the navbar */
- padding: 48px 0 0; /* Height of navbar */
- box-shadow: inset 1px 0 0 rgba(0, 0, 0, .1);
-}
-
-@media (max-width: 767.98px) {
- .sidebar {
- top: 5rem;
- }
-}
-
-.sidebar-sticky {
- position: relative;
- top: 0;
- height: calc(100vh - 48px);
- padding-top: .5rem;
- overflow-x: hidden;
- overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
-}
-
-.sidebar .nav-link {
- font-weight: 500;
- color: #333;
-}
-
-.sidebar .nav-link .feather {
- margin-left: 4px;
- color: #727272;
-}
-
-.sidebar .nav-link.active {
- color: #007bff;
-}
-
-.sidebar .nav-link:hover .feather,
-.sidebar .nav-link.active .feather {
- color: inherit;
-}
-
-.sidebar-heading {
- font-size: .75rem;
- text-transform: uppercase;
-}
-
-/*
- * Navbar
- */
-
-.navbar-brand {
- padding-top: .75rem;
- padding-bottom: .75rem;
- font-size: 1rem;
- background-color: rgba(0, 0, 0, .25);
- box-shadow: inset 1px 0 0 rgba(0, 0, 0, .25);
-}
-
-.navbar .navbar-toggler {
- top: .25rem;
- left: 1rem;
-}
-
-.navbar .form-control {
- padding: .75rem 1rem;
- border-width: 0;
- border-radius: 0;
-}
-
-.form-control-dark {
- color: #fff;
- background-color: rgba(255, 255, 255, .1);
- border-color: rgba(255, 255, 255, .1);
-}
-
-.form-control-dark:focus {
- border-color: transparent;
- box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
-}
diff --git a/site/content/docs/5.0/examples/dashboard/index.html b/site/content/docs/5.0/examples/dashboard/index.html
deleted file mode 100644
index 21d78e47f..000000000
--- a/site/content/docs/5.0/examples/dashboard/index.html
+++ /dev/null
@@ -1,252 +0,0 @@
----
-layout: examples
-title: Dashboard Template
-extra_css:
- - "dashboard.css"
-extra_js:
- - src: "https://cdn.jsdelivr.net/npm/feather-icons@4.28.0/dist/feather.min.js"
- integrity: "sha384-uO3SXW5IuS1ZpFPKugNNWqTZRRglnUJK6UAZ/gxOX80nxEkN9NcGZTftn6RzhGWE"
- - src: "https://cdn.jsdelivr.net/npm/chart.js@2.9.4/dist/Chart.min.js"
- integrity: "sha384-zNy6FEbO50N+Cg5wap8IKA4M/ZnLJgzc6w2NqACZaK0u0FXfOWRRJOnQtpZun8ha"
- - src: "dashboard.js"
----
-
-
-
-
-
-
-
-
-
-
-
-
- Section title
-
-
-
-
- | # |
- Header |
- Header |
- Header |
- Header |
-
-
-
-
- | 1,001 |
- random |
- data |
- placeholder |
- text |
-
-
- | 1,002 |
- placeholder |
- irrelevant |
- visual |
- layout |
-
-
- | 1,003 |
- data |
- rich |
- dashboard |
- tabular |
-
-
- | 1,003 |
- information |
- placeholder |
- illustrative |
- data |
-
-
- | 1,004 |
- text |
- random |
- layout |
- dashboard |
-
-
- | 1,005 |
- dashboard |
- irrelevant |
- text |
- placeholder |
-
-
- | 1,006 |
- dashboard |
- illustrative |
- rich |
- data |
-
-
- | 1,007 |
- placeholder |
- tabular |
- information |
- irrelevant |
-
-
- | 1,008 |
- random |
- data |
- placeholder |
- text |
-
-
- | 1,009 |
- placeholder |
- irrelevant |
- visual |
- layout |
-
-
- | 1,010 |
- data |
- rich |
- dashboard |
- tabular |
-
-
- | 1,011 |
- information |
- placeholder |
- illustrative |
- data |
-
-
- | 1,012 |
- text |
- placeholder |
- layout |
- dashboard |
-
-
- | 1,013 |
- dashboard |
- irrelevant |
- text |
- visual |
-
-
- | 1,014 |
- dashboard |
- illustrative |
- rich |
- data |
-
-
- | 1,015 |
- random |
- tabular |
- information |
- text |
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/grid/grid.css b/site/content/docs/5.0/examples/grid/grid.css
deleted file mode 100644
index 18e3568b1..000000000
--- a/site/content/docs/5.0/examples/grid/grid.css
+++ /dev/null
@@ -1,13 +0,0 @@
-.themed-grid-col {
- padding-top: .75rem;
- padding-bottom: .75rem;
- background-color: rgba(86, 61, 124, .15);
- border: 1px solid rgba(86, 61, 124, .2);
-}
-
-.themed-container {
- padding: .75rem;
- margin-bottom: 1.5rem;
- background-color: rgba(0, 123, 255, .15);
- border: 1px solid rgba(0, 123, 255, .2);
-}
diff --git a/site/content/docs/5.0/examples/grid/index.html b/site/content/docs/5.0/examples/grid/index.html
deleted file mode 100644
index f26829b4f..000000000
--- a/site/content/docs/5.0/examples/grid/index.html
+++ /dev/null
@@ -1,188 +0,0 @@
----
-layout: examples
-title: Grid Template
-extra_css:
- - "grid.css"
-body_class: "py-4"
-include_js: false
----
-
-
-
-
-
Bootstrap grid examples
-
Basic grid layouts to get you familiar with building within the Bootstrap grid system.
-
In these examples the .themed-grid-col class is added to the columns to add some theming. This is not a class that is available in Bootstrap by default.
-
-
Five grid tiers
-
There are five tiers to the Bootstrap grid system, one for each range of devices we support. Each tier starts at a minimum viewport size and automatically applies to the larger devices unless overridden.
-
-
-
.col-4
-
.col-4
-
.col-4
-
-
-
-
.col-sm-4
-
.col-sm-4
-
.col-sm-4
-
-
-
-
.col-md-4
-
.col-md-4
-
.col-md-4
-
-
-
-
.col-lg-4
-
.col-lg-4
-
.col-lg-4
-
-
-
-
.col-xl-4
-
.col-xl-4
-
.col-xl-4
-
-
-
-
.col-xxl-4
-
.col-xxl-4
-
.col-xxl-4
-
-
-
Three equal columns
-
Get three equal-width columns starting at desktops and scaling to large desktops. On mobile devices, tablets and below, the columns will automatically stack.
-
-
.col-md-4
-
.col-md-4
-
.col-md-4
-
-
-
Three equal columns alternative
-
By using the .row-cols-* classes, you can easily create a grid with equal columns.
-
-
.col child of .row-cols-md-3
-
.col child of .row-cols-md-3
-
.col child of .row-cols-md-3
-
-
-
Three unequal columns
-
Get three columns starting at desktops and scaling to large desktops of various widths. Remember, grid columns should add up to twelve for a single horizontal block. More than that, and columns start stacking no matter the viewport.
-
-
.col-md-3
-
.col-md-6
-
.col-md-3
-
-
-
Two columns
-
Get two columns starting at desktops and scaling to large desktops.
-
-
.col-md-8
-
.col-md-4
-
-
-
Full width, single column
-
- No grid classes are necessary for full-width elements.
-
-
-
-
-
Two columns with two nested columns
-
Per the documentation, nesting is easy—just put a row of columns within an existing column. This gives you two columns starting at desktops and scaling to large desktops, with another two (equal widths) within the larger column.
-
At mobile device sizes, tablets and down, these columns and their nested columns will stack.
-
-
-
- .col-md-8
-
-
-
.col-md-6
-
.col-md-6
-
-
-
.col-md-4
-
-
-
-
-
Mixed: mobile and desktop
-
The Bootstrap v4 grid system has five tiers of classes: xs (extra small, this class infix is not used), sm (small), md (medium), lg (large), and xl (extra large). You can use nearly any combination of these classes to create more dynamic and flexible layouts.
-
Each tier of classes scales up, meaning if you plan on setting the same widths for md, lg and xl, you only need to specify md.
-
-
.col-md-8
-
.col-6 .col-md-4
-
-
-
.col-6 .col-md-4
-
.col-6 .col-md-4
-
.col-6 .col-md-4
-
-
-
-
-
-
Mixed: mobile, tablet, and desktop
-
-
.col-sm-6 .col-lg-8
-
.col-6 .col-lg-4
-
-
-
.col-6 .col-sm-4
-
.col-6 .col-sm-4
-
.col-6 .col-sm-4
-
-
-
-
-
Gutters
-
With .gx-* classes, the horizontal gutters can be adjusted.
-
-
.col with .gx-4 gutters
-
.col with .gx-4 gutters
-
.col with .gx-4 gutters
-
.col with .gx-4 gutters
-
.col with .gx-4 gutters
-
.col with .gx-4 gutters
-
-
Use the .gy-* classes to control the vertical gutters.
-
-
.col with .gy-4 gutters
-
.col with .gy-4 gutters
-
.col with .gy-4 gutters
-
.col with .gy-4 gutters
-
.col with .gy-4 gutters
-
.col with .gy-4 gutters
-
-
With .g-* classes, the gutters in both directions can be adjusted.
-
-
.col with .g-3 gutters
-
.col with .g-3 gutters
-
.col with .g-3 gutters
-
.col with .g-3 gutters
-
.col with .g-3 gutters
-
.col with .g-3 gutters
-
-
-
-
-
-
-
Containers
-
Additional classes added in Bootstrap v4.4 allow containers that are 100% wide until a particular breakpoint. v5 adds a new xxl breakpoint.
-
-
- .container
- .container-sm
- .container-md
- .container-lg
- .container-xl
- .container-xxl
- .container-fluid
-
diff --git a/site/content/docs/5.0/examples/masonry/index.html b/site/content/docs/5.0/examples/masonry/index.html
deleted file mode 100644
index 9061d7cce..000000000
--- a/site/content/docs/5.0/examples/masonry/index.html
+++ /dev/null
@@ -1,105 +0,0 @@
----
-layout: examples
-title: Masonry example
-extra_js:
- - src: "https://cdn.jsdelivr.net/npm/masonry-layout@4.2.2/dist/masonry.pkgd.min.js"
- integrity: "sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D"
- async: true
----
-
-
- Bootstrap and Masonry
- Integrate Masonry with the Bootstrap grid system and cards component.
-
- Masonry is not included in Bootstrap. Add it by including the JavaScript plugin manually, or using a CDN like so:
-
-
-<script src="https://cdn.jsdelivr.net/npm/masonry-layout@4.2.2/dist/masonry.pkgd.min.js" integrity="sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D" crossorigin="anonymous" async></script>
-
-
- By adding data-masonry='{"percentPosition": true }' to the .row wrapper, we can combine the powers of Bootstrap's responsive grid and Masonry's positioning.
-
-
-
-
-
-
- {{< placeholder width="100%" height="200" class="card-img-top" text="Image cap" >}}
-
-
Card title that wraps to a new line
-
This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
-
-
-
-
-
-
-
- A well-known quote, contained in a blockquote element.
-
-
-
-
-
-
-
- {{< placeholder width="100%" height="200" class="card-img-top" text="Image cap" >}}
-
-
Card title
-
This card has supporting text below as a natural lead-in to additional content.
-
Last updated 3 mins ago
-
-
-
-
-
-
-
- A well-known quote, contained in a blockquote element.
-
-
-
-
-
-
-
-
-
Card title
-
This card has a regular title and short paragraph of text below it.
-
Last updated 3 mins ago
-
-
-
-
-
- {{< placeholder width="100%" height="260" class="card-img" text="Card image" >}}
-
-
-
-
-
-
- A well-known quote, contained in a blockquote element.
-
-
-
-
-
-
-
-
-
Card title
-
This is another card with title and supporting text below. This card has some additional content to make it slightly taller overall.
-
Last updated 3 mins ago
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/navbar-bottom/index.html b/site/content/docs/5.0/examples/navbar-bottom/index.html
deleted file mode 100644
index aee772e20..000000000
--- a/site/content/docs/5.0/examples/navbar-bottom/index.html
+++ /dev/null
@@ -1,41 +0,0 @@
----
-layout: examples
-title: Bottom navbar example
----
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/navbar-fixed/index.html b/site/content/docs/5.0/examples/navbar-fixed/index.html
deleted file mode 100644
index 848137eff..000000000
--- a/site/content/docs/5.0/examples/navbar-fixed/index.html
+++ /dev/null
@@ -1,40 +0,0 @@
----
-layout: examples
-title: Fixed top navbar example
-extra_css:
- - "navbar-top-fixed.css"
----
-
-
-
-
-
-
Navbar example
-
This example is a quick exercise to illustrate how fixed to top navbar works. As you scroll, it will remain fixed to the top of your browser’s viewport.
-
}}" role="button">View navbar docs »
-
-
diff --git a/site/content/docs/5.0/examples/navbar-static/index.html b/site/content/docs/5.0/examples/navbar-static/index.html
deleted file mode 100644
index fe95dab47..000000000
--- a/site/content/docs/5.0/examples/navbar-static/index.html
+++ /dev/null
@@ -1,40 +0,0 @@
----
-layout: examples
-title: Top navbar example
-extra_css:
- - "navbar-top.css"
----
-
-
-
-
-
-
Navbar example
-
This example is a quick exercise to illustrate how the top-aligned navbar works. As you scroll, this navbar remains in its original position and moves with the rest of the page.
-
}}" role="button">View navbar docs »
-
-
diff --git a/site/content/docs/5.0/examples/navbars/index.html b/site/content/docs/5.0/examples/navbars/index.html
deleted file mode 100644
index 38281f3dd..000000000
--- a/site/content/docs/5.0/examples/navbars/index.html
+++ /dev/null
@@ -1,416 +0,0 @@
----
-layout: examples
-title: Navbar Template
-extra_css:
- - "navbar.css"
----
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Matching .container-xl...
-
-
-
-
-
-
-
-
-
-
-
-
-
Navbar examples
-
This example is a quick exercise to illustrate how the navbar and its contents work. Some navbars extend the width of the viewport, others are confined within a .container. For positioning of navbars, checkout the }}">top and }}">fixed top examples.
-
At the smallest breakpoint, the collapse plugin is used to hide the links and show a menu button to toggle the collapsed content.
-
- }}" role="button">View navbar docs »
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/offcanvas/index.html b/site/content/docs/5.0/examples/offcanvas/index.html
deleted file mode 100644
index a7c99a538..000000000
--- a/site/content/docs/5.0/examples/offcanvas/index.html
+++ /dev/null
@@ -1,139 +0,0 @@
----
-layout: examples
-title: Offcanvas template
-extra_css:
- - "offcanvas.css"
-extra_js:
- - src: "offcanvas.js"
-body_class: "bg-light"
----
-
-
-
-
-
-
-
-

-
-
Bootstrap
- Since 2011
-
-
-
-
-
Recent updates
-
- {{< placeholder width="32" height="32" background="#007bff" color="#007bff" class="flex-shrink-0 me-2 rounded" >}}
-
- @username
- Some representative placeholder content, with some information about this user. Imagine this being some sort of status update, perhaps?
-
-
-
- {{< placeholder width="32" height="32" background="#e83e8c" color="#e83e8c" class="flex-shrink-0 me-2 rounded" >}}
-
- @username
- Some more representative placeholder content, related to this other user. Another status update, perhaps.
-
-
-
- {{< placeholder width="32" height="32" background="#6f42c1" color="#6f42c1" class="flex-shrink-0 me-2 rounded" >}}
-
- @username
- This user also gets some representative placeholder content. Maybe they did something interesting, and you really want to highlight this in the recent updates.
-
-
-
- All updates
-
-
-
-
-
Suggestions
-
- {{< placeholder width="32" height="32" background="#007bff" color="#007bff" class="flex-shrink-0 me-2 rounded" >}}
-
-
-
- {{< placeholder width="32" height="32" background="#007bff" color="#007bff" class="flex-shrink-0 me-2 rounded" >}}
-
-
-
- {{< placeholder width="32" height="32" background="#007bff" color="#007bff" class="flex-shrink-0 me-2 rounded" >}}
-
-
-
- All suggestions
-
-
-
diff --git a/site/content/docs/5.0/examples/offcanvas/offcanvas.js b/site/content/docs/5.0/examples/offcanvas/offcanvas.js
deleted file mode 100644
index 793ea86cd..000000000
--- a/site/content/docs/5.0/examples/offcanvas/offcanvas.js
+++ /dev/null
@@ -1,7 +0,0 @@
-(function () {
- 'use strict'
-
- document.querySelector('[data-bs-toggle="offcanvas"]').addEventListener('click', function () {
- document.querySelector('.offcanvas-collapse').classList.toggle('open')
- })
-})()
diff --git a/site/content/docs/5.0/examples/pricing/index.html b/site/content/docs/5.0/examples/pricing/index.html
deleted file mode 100644
index 58bb22ccf..000000000
--- a/site/content/docs/5.0/examples/pricing/index.html
+++ /dev/null
@@ -1,117 +0,0 @@
----
-layout: examples
-title: Pricing example
-extra_css:
- - "pricing.css"
-include_js: false
----
-
-
-
-
-
-
-
-
-
-
-
-
$0 / mo
-
- - 10 users included
- - 2 GB of storage
- - Email support
- - Help center access
-
-
-
-
-
-
-
-
-
-
$15 / mo
-
- - 20 users included
- - 10 GB of storage
- - Priority email support
- - Help center access
-
-
-
-
-
-
-
-
-
-
$29 / mo
-
- - 30 users included
- - 15 GB of storage
- - Phone and email support
- - Help center access
-
-
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/pricing/pricing.css b/site/content/docs/5.0/examples/pricing/pricing.css
deleted file mode 100644
index 70afca134..000000000
--- a/site/content/docs/5.0/examples/pricing/pricing.css
+++ /dev/null
@@ -1,7 +0,0 @@
-.container {
- max-width: 960px;
-}
-
-.pricing-header {
- max-width: 700px;
-}
diff --git a/site/content/docs/5.0/examples/product/index.html b/site/content/docs/5.0/examples/product/index.html
deleted file mode 100644
index 423890e3b..000000000
--- a/site/content/docs/5.0/examples/product/index.html
+++ /dev/null
@@ -1,148 +0,0 @@
----
-layout: examples
-title: Product example
-extra_css:
- - "product.css"
----
-
-
-
-
-
-
-
Punny headline
-
And an even wittier subheading to boot. Jumpstart your marketing efforts with this example based on Apple’s marketing pages.
-
Coming soon
-
-
-
-
-
-
-
-
-
Another headline
-
And an even wittier subheading.
-
-
-
-
-
-
Another headline
-
And an even wittier subheading.
-
-
-
-
-
-
-
-
-
Another headline
-
And an even wittier subheading.
-
-
-
-
-
-
Another headline
-
And an even wittier subheading.
-
-
-
-
-
-
-
-
-
Another headline
-
And an even wittier subheading.
-
-
-
-
-
-
Another headline
-
And an even wittier subheading.
-
-
-
-
-
-
-
-
-
Another headline
-
And an even wittier subheading.
-
-
-
-
-
-
Another headline
-
And an even wittier subheading.
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/sign-in/index.html b/site/content/docs/5.0/examples/sign-in/index.html
deleted file mode 100644
index 6fefc45e6..000000000
--- a/site/content/docs/5.0/examples/sign-in/index.html
+++ /dev/null
@@ -1,26 +0,0 @@
----
-layout: examples
-title: Signin Template
-extra_css:
- - "signin.css"
-body_class: "text-center"
-include_js: false
----
-
-
-
-
diff --git a/site/content/docs/5.0/examples/starter-template/index.html b/site/content/docs/5.0/examples/starter-template/index.html
deleted file mode 100644
index 0cd64c75f..000000000
--- a/site/content/docs/5.0/examples/starter-template/index.html
+++ /dev/null
@@ -1,50 +0,0 @@
----
-layout: examples
-title: Starter Template
-extra_css:
- - "starter-template.css"
----
-
-
-
-
-
-
-
Bootstrap starter template
-
Use this document as a way to quickly start any new project.
All you get is this text and a mostly barebones HTML document.
-
-
-
diff --git a/site/content/docs/5.0/examples/starter-template/starter-template.css b/site/content/docs/5.0/examples/starter-template/starter-template.css
deleted file mode 100644
index 6fb709105..000000000
--- a/site/content/docs/5.0/examples/starter-template/starter-template.css
+++ /dev/null
@@ -1,3 +0,0 @@
-body {
- padding-top: 5rem;
-}
diff --git a/site/content/docs/5.0/examples/sticky-footer-navbar/index.html b/site/content/docs/5.0/examples/sticky-footer-navbar/index.html
deleted file mode 100644
index ce036dc09..000000000
--- a/site/content/docs/5.0/examples/sticky-footer-navbar/index.html
+++ /dev/null
@@ -1,52 +0,0 @@
----
-layout: examples
-title: Sticky Footer Navbar Template
-extra_css:
- - "sticky-footer-navbar.css"
-html_class: "h-100"
-body_class: "d-flex flex-column h-100"
----
-
-
-
-
-
-
-
Sticky footer with fixed navbar
-
Pin a footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS. A fixed navbar has been added with padding-top: 60px; on the main > .container.
-
Back to }}">the default sticky footer minus the navbar.
-
-
-
-
diff --git a/site/content/docs/5.0/examples/sticky-footer-navbar/sticky-footer-navbar.css b/site/content/docs/5.0/examples/sticky-footer-navbar/sticky-footer-navbar.css
deleted file mode 100644
index 3087ead7d..000000000
--- a/site/content/docs/5.0/examples/sticky-footer-navbar/sticky-footer-navbar.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/* Custom page CSS
--------------------------------------------------- */
-/* Not required for template or sticky footer method. */
-
-main > .container {
- padding: 60px 15px 0;
-}
diff --git a/site/content/docs/5.0/examples/sticky-footer/index.html b/site/content/docs/5.0/examples/sticky-footer/index.html
deleted file mode 100644
index 7a6e127cd..000000000
--- a/site/content/docs/5.0/examples/sticky-footer/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
----
-layout: examples
-title: Sticky Footer Template
-extra_css:
- - "sticky-footer.css"
-html_class: "h-100"
-body_class: "d-flex flex-column h-100"
-include_js: false
----
-
-
-
-
-
-
-
diff --git a/site/content/docs/5.0/examples/sticky-footer/sticky-footer.css b/site/content/docs/5.0/examples/sticky-footer/sticky-footer.css
deleted file mode 100644
index f8be43729..000000000
--- a/site/content/docs/5.0/examples/sticky-footer/sticky-footer.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/* Custom page CSS
--------------------------------------------------- */
-/* Not required for template or sticky footer method. */
-
-.container {
- width: auto;
- max-width: 680px;
- padding: 0 15px;
-}
diff --git a/site/content/docs/5.0/extend/icons.md b/site/content/docs/5.0/extend/icons.md
deleted file mode 100644
index 1e26503bd..000000000
--- a/site/content/docs/5.0/extend/icons.md
+++ /dev/null
@@ -1,40 +0,0 @@
----
-layout: docs
-title: Icons
-description: Guidance and suggestions for using external icon libraries with Bootstrap.
-group: extend
----
-
-While Bootstrap doesn't include an icon set by default, we do have our own comprehensive icon library called Bootstrap Icons. Feel free to use them or any other icon set in your project. We've included details for Bootstrap Icons and other preferred icon sets below.
-
-While most icon sets include multiple file formats, we prefer SVG implementations for their improved accessibility and vector support.
-
-## Bootstrap Icons
-
-Bootstrap Icons is a growing library of SVG icons that are designed by [@mdo](https://github.com/mdo) and maintained by [the Bootstrap Team](https://github.com/orgs/twbs/people). The beginnings of this icon set come from Bootstrap's very own components—our forms, carousels, and more. Bootstrap has very few icon needs out of the box, so we didn't need much. However, once we got going, we couldn't stop making more.
-
-Oh, and did we mention they're completely open source? Licensed under MIT, just like Bootstrap, our icon set is available to everyone.
-
-[Learn more about Bootstrap Icons]({{< param icons >}}), including how to install them and recommended usage.
-
-## Alternatives
-
-We've tested and used these icon sets ourselves as preferred alternatives to Bootstrap Icons.
-
-{{< markdown >}}
-{{< icons.inline >}}
-{{- $type := .Get "type" | default "preferred" -}}
-
-{{- range (index .Site.Data.icons $type) }}
-- [{{ .name }}]({{ .website }})
-{{- end }}
-{{< /icons.inline >}}
-{{< /markdown >}}
-
-## More options
-
-While we haven't tried these out ourselves, they do look promising and provide multiple formats, including SVG.
-
-{{< markdown >}}
-{{< icons.inline type="more" />}}
-{{< /markdown >}}
diff --git a/site/content/docs/5.0/forms/checks-radios.md b/site/content/docs/5.0/forms/checks-radios.md
deleted file mode 100644
index ae89f5ee3..000000000
--- a/site/content/docs/5.0/forms/checks-radios.md
+++ /dev/null
@@ -1,271 +0,0 @@
----
-layout: docs
-title: Checks and radios
-description: Create consistent cross-browser and cross-device checkboxes and radios with our completely rewritten checks component.
-group: forms
-aliases: "/docs/5.0/forms/checks/"
-toc: true
----
-
-## Approach
-
-Browser default checkboxes and radios are replaced with the help of `.form-check`, a series of classes for both input types that improves the layout and behavior of their HTML elements, that provide greater customization and cross browser consistency. Checkboxes are for selecting one or several options in a list, while radios are for selecting one option from many.
-
-Structurally, our ``s and `