Skip to content

Commit

Permalink
fix(#694): replace the boosted.netlify doc links with /docs/5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-deramond authored and Kévin Le Diouron committed Jul 12, 2021
1 parent 54a2e7a commit 01b77cf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://boosted.orange.com/">
<img src="https://v5-dev--boosted.netlify.app/docs/5.0/assets/brand/orange_logo.svg" alt="Boosted" width="50" height="50">
<img src="https://boosted.orange.com/docs/5.0/assets/brand/orange-logo.svg" alt="Boosted" width="50" height="50">
</a>
</p>

Expand All @@ -9,7 +9,7 @@
<p align="center">
Boosted is a fork of Bootstrap. Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development.
<br>
<a href="https://v5-dev--boosted.netlify.app/docs/5.0/"><strong>Visit Boosted</strong></a>
<a href="https://boosted.orange.com/docs/5.0/"><strong>Visit Boosted</strong></a>
<br>
<br>
<a href="https://github.com/Orange-OpenSource/Orange-Boosted-Bootstrap/issues/new?template=bug.md">Report bug</a>
Expand Down Expand Up @@ -43,7 +43,7 @@ Several quick start options are available:
- Install with [Composer](https://getcomposer.org/): `composer require Orange-OpenSource/Orange-Boosted-Bootstrap:5.0.1`
- Install with [NuGet](https://www.nuget.org/): CSS: `Install-Package boosted` Sass: `Install-Package boosted.sass`

Read the [Getting started page](https://v5-dev--boosted.netlify.app/docs/5.0/getting-started/introduction/) for information on the framework contents, templates and examples, and more.
Read the [Getting started page](https://boosted.orange.com/docs/5.0/getting-started/introduction/) for information on the framework contents, templates and examples, and more.


## Status
Expand Down
16 changes: 8 additions & 8 deletions site/content/docs/5.0/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ We only replaced `Bootstrap` with `Boosted`—especially in code examples and fi
## Documentation changes

- Redesigned homepage, docs layout, and footer.
- Added [new Parcel guide](https://v5-dev--boosted.netlify.app/docs/5.0/getting-started/parcel/).
- Added [new Customize section](https://v5-dev--boosted.netlify.app/docs/5.0/customize/overview/), replacing [v4's Theming page](https://boosted.orange.com/docs/4.6/getting-started/theming/), with new details on Sass, global configuration options, color schemes, CSS variables, and more.
- Reorganized all form documentation into [new Forms section](https://v5-dev--boosted.netlify.app/docs/5.0/forms/overview/), breaking apart the content into more focused pages.
- Similarly, updated [the Layout section](https://v5-dev--boosted.netlify.app/docs/5.0/layout/breakpoints/), to flesh out grid content more clearly.
- Added [new Parcel guide](/docs/{{< param docs_version >}}/getting-started/parcel/).
- Added [new Customize section](/docs/{{< param docs_version >}}/customize/overview/), replacing [v4's Theming page](https://boosted.orange.com/docs/4.6/getting-started/theming/), with new details on Sass, global configuration options, color schemes, CSS variables, and more.
- Reorganized all form documentation into [new Forms section](/docs/{{< param docs_version >}}/forms/overview/), breaking apart the content into more focused pages.
- Similarly, updated [the Layout section](/docs/{{< param docs_version >}}/layout/breakpoints/), to flesh out grid content more clearly.
- Renamed "Navs" component page to "Navs & Tabs".
- Renamed "Checks" page to "Checks & radios".
- Redesigned the navbar and added a new subnav to make it easier to get around our sites and docs versions.
Expand Down Expand Up @@ -95,7 +95,7 @@ We only replaced `Bootstrap` with `Boosted`—especially in code examples and fi
- **New breakpoint!** Added new `xxl` breakpoint for `1400px` and up. No changes to all other breakpoints.

- **Improved gutters.** Gutters are now set in rems, and are narrower than v4 (`1.5rem`, or about `24px`, down from `30px`). This aligns our grid system's gutters with our spacing utilities.
- Added new [gutter class](https://v5-dev--boosted.netlify.app/docs/5.0/layout/gutters/) (`.g-*`, `.gx-*`, and `.gy-*`) to control horizontal/vertical gutters, horizontal gutters, and vertical gutters.
- Added new [gutter class](/docs/{{< param docs_version >}}/layout/gutters/) (`.g-*`, `.gx-*`, and `.gy-*`) to control horizontal/vertical gutters, horizontal gutters, and vertical gutters.
- <span class="badge bg-danger">Breaking</span> Renamed `.no-gutters` to `.g-0` to match new gutter utilities.

- Columns no longer have `position: relative` applied, so you may have to add `.position-relative` to some elements to restore that behavior.
Expand Down Expand Up @@ -204,9 +204,9 @@ We only replaced `Bootstrap` with `Boosted`—especially in code examples and fi

### Buttons

- <span class="badge bg-danger">Breaking</span> **[Toggle buttons](https://v5-dev--boosted.netlify.app/docs/5.0/forms/checks-radios/#toggle-buttons), with checkboxes or radios, no longer require JavaScript and have new markup.** We no longer require a wrapping element, add `.btn-check` to the `<input>`, and pair it with any `.btn` classes on the `<label>`. [See #30650](https://github.com/twbs/bootstrap/pull/30650). _The docs for this has moved from our Buttons page to the new Forms section._
- <span class="badge bg-danger">Breaking</span> **[Toggle buttons](/docs/{{< param docs_version >}}/forms/checks-radios/#toggle-buttons), with checkboxes or radios, no longer require JavaScript and have new markup.** We no longer require a wrapping element, add `.btn-check` to the `<input>`, and pair it with any `.btn` classes on the `<label>`. [See #30650](https://github.com/twbs/bootstrap/pull/30650). _The docs for this has moved from our Buttons page to the new Forms section._

- <span class="badge bg-danger">Breaking</span> **Dropped `.btn-block` for utilities.** Instead of using `.btn-block` on the `.btn`, wrap your buttons with `.d-grid` and a `.gap-*` utility to space them as needed. Switch to responsive classes for even more control over them. [Read the docs for some examples.](https://v5-dev--boosted.netlify.app/docs/5.0/components/buttons/#block-buttons)
- <span class="badge bg-danger">Breaking</span> **Dropped `.btn-block` for utilities.** Instead of using `.btn-block` on the `.btn`, wrap your buttons with `.d-grid` and a `.gap-*` utility to space them as needed. Switch to responsive classes for even more control over them. [Read the docs for some examples.](/docs/{{< param docs_version >}}/components/buttons/#block-buttons)

- Updated our `button-variant()` and `button-outline-variant()` mixins to support additional parameters.

Expand Down Expand Up @@ -261,7 +261,7 @@ We only replaced `Bootstrap` with `Boosted`—especially in code examples and fi

### Jumbotron

- <span class="badge bg-danger">Breaking</span> Dropped the jumbotron component as it can be replicated with utilities. [See our new Jumbotron example for a demo.](https://v5-dev--boosted.netlify.app/docs/5.0/examples/jumbotron/)
- <span class="badge bg-danger">Breaking</span> Dropped the jumbotron component as it can be replicated with utilities. [See our new Jumbotron example for a demo.](/docs/{{< param docs_version >}}/examples/jumbotron/)

### List group

Expand Down

0 comments on commit 01b77cf

Please sign in to comment.