diff options
| author | Mark Otto <[email protected]> | 2014-03-16 19:32:08 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-03-16 19:32:08 -0700 |
| commit | b004c9ac393671489720be06739f01e5c1bec7fe (patch) | |
| tree | 9e9eb06810eab665ea677596c613112be3b1bfa3 /docs | |
| parent | b7ab7998248696392d3d4c4b1335ef2b6b10d29f (diff) | |
| download | bootstrap-b004c9ac393671489720be06739f01e5c1bec7fe.tar.xz bootstrap-b004c9ac393671489720be06739f01e5c1bec7fe.zip | |
Rename and organize nav partials for cleaner file structure
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/_includes/nav/about.html (renamed from docs/_includes/nav-about.html) | 0 | ||||
| -rw-r--r-- | docs/_includes/nav/components.html (renamed from docs/_includes/nav-components.html) | 0 | ||||
| -rw-r--r-- | docs/_includes/nav/css.html (renamed from docs/_includes/nav-css.html) | 0 | ||||
| -rw-r--r-- | docs/_includes/nav/customize.html (renamed from docs/_includes/nav-customize.html) | 0 | ||||
| -rw-r--r-- | docs/_includes/nav/getting-started.html (renamed from docs/_includes/nav-getting-started.html) | 0 | ||||
| -rw-r--r-- | docs/_includes/nav/javascript.html (renamed from docs/_includes/nav-javascript.html) | 0 | ||||
| -rw-r--r-- | docs/_includes/nav/main.html (renamed from docs/_includes/nav-main.html) | 0 | ||||
| -rw-r--r-- | docs/_includes/nav/migration.html (renamed from docs/_includes/nav-migration.html) | 0 | ||||
| -rw-r--r-- | docs/_layouts/default.html | 16 | ||||
| -rw-r--r-- | docs/_layouts/home.html | 2 |
10 files changed, 9 insertions, 9 deletions
diff --git a/docs/_includes/nav-about.html b/docs/_includes/nav/about.html index bf6b684e9..bf6b684e9 100644 --- a/docs/_includes/nav-about.html +++ b/docs/_includes/nav/about.html diff --git a/docs/_includes/nav-components.html b/docs/_includes/nav/components.html index e850f3abc..e850f3abc 100644 --- a/docs/_includes/nav-components.html +++ b/docs/_includes/nav/components.html diff --git a/docs/_includes/nav-css.html b/docs/_includes/nav/css.html index d67ad20be..d67ad20be 100644 --- a/docs/_includes/nav-css.html +++ b/docs/_includes/nav/css.html diff --git a/docs/_includes/nav-customize.html b/docs/_includes/nav/customize.html index 04725096c..04725096c 100644 --- a/docs/_includes/nav-customize.html +++ b/docs/_includes/nav/customize.html diff --git a/docs/_includes/nav-getting-started.html b/docs/_includes/nav/getting-started.html index e253bf1c1..e253bf1c1 100644 --- a/docs/_includes/nav-getting-started.html +++ b/docs/_includes/nav/getting-started.html diff --git a/docs/_includes/nav-javascript.html b/docs/_includes/nav/javascript.html index 741b9cf81..741b9cf81 100644 --- a/docs/_includes/nav-javascript.html +++ b/docs/_includes/nav/javascript.html diff --git a/docs/_includes/nav-main.html b/docs/_includes/nav/main.html index 9f449f258..9f449f258 100644 --- a/docs/_includes/nav-main.html +++ b/docs/_includes/nav/main.html diff --git a/docs/_includes/nav-migration.html b/docs/_includes/nav/migration.html index 10128a87e..10128a87e 100644 --- a/docs/_includes/nav-migration.html +++ b/docs/_includes/nav/migration.html diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index 70746f6cf..ec05d83ce 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -8,7 +8,7 @@ <a class="sr-only sr-only-focusable" href="#content">Skip to main content</a> <!-- Docs master nav --> - {% include nav-main.html %} + {% include nav/main.html %} <!-- Docs page layout --> <div class="bs-docs-header" id="content"> @@ -29,19 +29,19 @@ <div class="bs-docs-sidebar hidden-print" role="complementary"> <ul class="nav bs-docs-sidenav"> {% if page.slug == "getting-started" %} - {% include nav-getting-started.html %} + {% include nav/getting-started.html %} {% elsif page.slug == "css" %} - {% include nav-css.html %} + {% include nav/css.html %} {% elsif page.slug == "components" %} - {% include nav-components.html %} + {% include nav/components.html %} {% elsif page.slug == "js" %} - {% include nav-javascript.html %} + {% include nav/javascript.html %} {% elsif page.slug == "customize" %} - {% include nav-customize.html %} + {% include nav/customize.html %} {% elsif page.slug == "about" %} - {% include nav-about.html %} + {% include nav/about.html %} {% elsif page.slug == "migration" %} - {% include nav-migration.html %} + {% include nav/migration.html %} {% endif %} </ul> <a class="back-to-top" href="#top"> diff --git a/docs/_layouts/home.html b/docs/_layouts/home.html index 99b863f9b..9b1eee6ed 100644 --- a/docs/_layouts/home.html +++ b/docs/_layouts/home.html @@ -8,7 +8,7 @@ <a class="sr-only sr-only-focusable" href="#content">Skip to main content</a> <!-- Docs master nav --> - {% include nav-main.html %} + {% include nav/main.html %} <!-- Page content of course! --> {{ content }} |
