aboutsummaryrefslogtreecommitdiff
path: root/docs/4.0/getting-started
diff options
context:
space:
mode:
authorJan Karlo Dela Cruz <[email protected]>2017-08-11 14:26:51 +0100
committerXhmikosR <[email protected]>2017-08-11 16:26:51 +0300
commit537b5f012771069b182aabab651eff9723d785b0 (patch)
tree35ab3e62ecbd8ed062b7bdb0bf469e04762f86ad /docs/4.0/getting-started
parent185fe1b444e88cd9091e5a304094ed43ad8f84fc (diff)
downloadbootstrap-537b5f012771069b182aabab651eff9723d785b0.tar.xz
bootstrap-537b5f012771069b182aabab651eff9723d785b0.zip
Fix broken links in documentation. (#23315)
Diffstat (limited to 'docs/4.0/getting-started')
-rw-r--r--docs/4.0/getting-started/webpack.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/4.0/getting-started/webpack.md b/docs/4.0/getting-started/webpack.md
index 84ad74c7f..ec748c48e 100644
--- a/docs/4.0/getting-started/webpack.md
+++ b/docs/4.0/getting-started/webpack.md
@@ -8,11 +8,11 @@ toc: true
## Installing Bootstrap
-[Install bootstrap](/getting-started/download/#npm) as a node module using npm.
+[Install bootstrap]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/download/#npm) as a node module using npm.
## Importing JavaScript
-Import [Bootstrap's JavaScript](/getting-started/javascript/) by adding this line to your app's entry point (usually `index.js` or `app.js`):
+Import [Bootstrap's JavaScript]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/javascript/) by adding this line to your app's entry point (usually `index.js` or `app.js`):
{% highlight js %}
import 'bootstrap';
@@ -55,7 +55,7 @@ Notice that if you chose to **import plugins individually**, you must also insta
To enjoy the full potential of Bootstrap and customize it to your needs, use the source files as a part of your project's bundling process.
-First, create your own `_custom.scss` and use it to override the [built-in custom variables](/getting-started/options/). Then, use your main sass file to import your custom variables, followed by Bootstrap:
+First, create your own `_custom.scss` and use it to override the [built-in custom variables]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/options/). Then, use your main sass file to import your custom variables, followed by Bootstrap:
{% highlight scss %}
@import "custom";
@import "~bootstrap/scss/bootstrap";