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
diff options
context:
space:
mode:
authorSteven Black <steveb@stevenblack.com>2017-08-12 19:35:19 +0300
committerXhmikosR <xhmikosr@gmail.com>2017-08-12 19:35:19 +0300
commit7b8afff038e251acbdb28e455aec886d24a766e7 (patch)
tree6ff3b6f0dd0468c096f251fab6b0cbe8b4b9fa1b /_includes
parent9d988de054ad8a73f1cb1d8901af0f45e3d21f34 (diff)
Fix broken Examples link in the docs footer include – `footer.html`. (#23348)
Re: #23343 – **Broken Links on getbootstrap.com** Clicking the `Examples` link in the Docs footer yields 404. http://getbootstrap.com/examples/ If merged, this makes the footer `Examples` link like the one in docs-navbar.html which is the same folder. Therefore `_includes/footer.html` and `_includes/docs-navbar.html` now use the same link to `Examples`.
Diffstat (limited to '_includes')
-rw-r--r--_includes/footer.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/footer.html b/_includes/footer.html
index 8efcab974f..1f9b44c7b8 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -3,7 +3,7 @@
<ul class="bd-footer-links">
<li><a href="{{ site.repo }}">GitHub</a></li>
<li><a href="https://twitter.com/getbootstrap">Twitter</a></li>
- <li><a href="{{ site.baseurl }}/examples/">Examples</a></li>
+ <li><a href="{{ site.baseurl }}/docs/{{ site.docs_version }}/examples/">Examples</a></li>
<li><a href="{{ site.baseurl }}/about/">About</a></li>
</ul>
<p>Designed and built with all the love in the world by <a href="https://twitter.com/mdo" target="_blank" rel="noopener">@mdo</a> and <a href="https://twitter.com/fat" target="_blank" rel="noopener">@fat</a>. Maintained by the <a href="https://github.com/orgs/twbs/people">core team</a> with the help of <a href="https://github.com/twbs/bootstrap/graphs/contributors">our contributors</a>.</p>