Skip to content

Commit 77ad0f9

Browse files
committed
docs: split cdn links
1 parent eae899a commit 77ad0f9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/content/getting-started/introduction.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ Curious which components explicitly require our JavaScript and Popper? Click the
7575

7676
{{< added-in "5.0.0" >}}
7777

78-
7978
If you're currently using Bootstrap in your project or want to maintain full compatibility with Bootstrap, check out how you can add CoreUI for Bootstrap to your project. CoreUI enhances Bootstrap projects by adding advanced components and features, offering a smooth upgrade with minimal adjustments. It retains Bootstrap's familiar structure while introducing new possibilities for UI development.
8079

8180
{{< bootstrap-compatibility >}}
@@ -85,7 +84,7 @@ If you're currently using Bootstrap in your project or want to maintain full com
8584
Copy-paste the stylesheet `<link>` into your `<head>` before all other stylesheets to load our CSS.
8685

8786
```html
88-
<link href="{{< param "cdn.css_bs" >}}" rel="stylesheet" integrity="{{< param "cdn.css_bs_hash" >}}" crossorigin="anonymous">
87+
<link href="{{< param "cdn_themes.css_bs" >}}" rel="stylesheet" integrity="{{< param "cdn_themes.css_bs_hash" >}}" crossorigin="anonymous">
8988
```
9089

9190
### JS
@@ -97,7 +96,7 @@ Many of our components require the use of JavaScript to function. Specifically,
9796
Include every CoreUI for Bootstrap JavaScript plugin and dependency with one of our two bundles. Both `bootstrap.bundle.js` and `bootstrap.bundle.min.js` include [Popper](https://popper.js.org/) for our tooltips and popovers.
9897

9998
```html
100-
<script src="{{< param "cdn.js_bs_bundle" >}}" integrity="{{< param "cdn.js_bs_bundle_hash" >}}" crossorigin="anonymous"></script>
99+
<script src="{{< param "cdn_themes.js_bs_bundle" >}}" integrity="{{< param "cdn_themes.js_bs_bundle_hash" >}}" crossorigin="anonymous"></script>
101100
```
102101

103102
##### Separate
@@ -106,7 +105,7 @@ If you decide to go with the separate scripts solution, Popper must come first (
106105

107106
```html
108107
<script src="{{< param "cdn.popper" >}}" integrity="{{< param "cdn.popper_hash" >}}" crossorigin="anonymous"></script>
109-
<script src="{{< param "cdn.js_bs" >}}" integrity="{{< param "cdn.js_bs_hash" >}}" crossorigin="anonymous"></script>
108+
<script src="{{< param "cdn_themes.js_bs" >}}" integrity="{{< param "cdn_themes.js_bs_hash" >}}" crossorigin="anonymous"></script>
110109
```
111110

112111
## Starter template

0 commit comments

Comments
 (0)