Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2018-03-13 14:25:22 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-03-13 15:51:11 +0300
commitdea778f4f55cd34ebc3f4e5c7c29f26dfac2ba52 (patch)
tree681f1ad826269869e8e129b651c91743031f6da8 /docs
parenta93830c9fd526983bf14cbb891c13ebf1ef9eb4e (diff)
approach.md: Fix empty link.
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/extend/approach.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/4.0/extend/approach.md b/docs/4.0/extend/approach.md
index df62c149a4..6e31aeca5f 100644
--- a/docs/4.0/extend/approach.md
+++ b/docs/4.0/extend/approach.md
@@ -53,13 +53,13 @@ Bootstrap includes several components that function as an overlay of some kind.
Each overlay component increases it's `z-index` value slightly in such a way that common UI principles allow user focused or hovered elements to remain in view at all times. For example, a modal is document blocking (e.g., you cannot take any other action save for the modal's action), so we put that above our navbars.
-Learn more about this in our [`z-index` layout page](/docs/4.0/layout/overview/#z-index).
+Learn more about this in our [`z-index` layout page]({{ site.baseurl }}/docs/{{ site.docs_version }}/layout/overview/#z-index).
## HTML and CSS over JS
Whenever possible, we prefer to write HTML and CSS over JavaScript. In general, HTML and CSS are more prolific and accessible to more people of all different experience levels. HTML and CSS are also faster in your browser than JavaScript, and your browser generally provides a great deal of functionality for you.
-This principle is our first-class JavaScript API is `data` attributes. You don’t need to write nearly any JavaScript to use our JavaScript plugins; instead, write HTML. Read more about this in [our JavaScript overview page]().
+This principle is our first-class JavaScript API is `data` attributes. You don’t need to write nearly any JavaScript to use our JavaScript plugins; instead, write HTML. Read more about this in [our JavaScript overview page]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/javascript/#data-attributes).
Lastly, our styles build on the fundamental behaviors of common web elements. Whenever possible, we prefer to use what the browser provides. For example, you can put a `.btn` class on nearly any element, but most elements don’t provide any semantic value or browser functionality. So instead, we use `<button>`s and `<a>`s.