diff options
| author | Mark Otto <[email protected]> | 2013-03-28 01:08:14 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-03-28 01:08:14 -0700 |
| commit | 4b8b8d2e46e25820d190db957b4e837b66198f72 (patch) | |
| tree | 6080683d2720e712c8353c465ebcff19dc0a1bc5 /docs/_layouts | |
| parent | 081c061281c96818bf9a904a7e5e2a673aa7a54d (diff) | |
| download | bootstrap-4b8b8d2e46e25820d190db957b4e837b66198f72.tar.xz bootstrap-4b8b8d2e46e25820d190db957b4e837b66198f72.zip | |
holy crap new docs layout separate from home, no more top navbar
Diffstat (limited to 'docs/_layouts')
| -rw-r--r-- | docs/_layouts/default.html | 5 | ||||
| -rw-r--r-- | docs/_layouts/home.html | 20 |
2 files changed, 21 insertions, 4 deletions
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index acab46de9..11b78f3f9 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -5,10 +5,7 @@ {% include header.html %} <!-- Place anything custom after this. --> </head> - <body class="bs-docs-body" data-spy="scroll" data-target=".bs-docs-sidebar"> - - <!-- Main navbar for all docs pages. --> - {% include navbar.html %} + <body class="bs-docs-docs" data-spy="scroll" data-target=".bs-docs-sidebar"> <!-- Page content of course! --> {{ content }} diff --git a/docs/_layouts/home.html b/docs/_layouts/home.html new file mode 100644 index 000000000..e837f9517 --- /dev/null +++ b/docs/_layouts/home.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <!-- Meta, title, CSS, favicons, etc. --> + {% include header.html %} + <!-- Place anything custom after this. --> + </head> + <body class="bs-docs-home"> + + <!-- Page content of course! --> + {{ content }} + + <!-- Main docs footer (social buttons, copyright, etc). --> + {% include colophon.html %} + + <!-- JS and analytics only. --> + {% include footer.html %} + + </body> +</html> |
