diff options
| author | Mark Otto <[email protected]> | 2017-05-27 15:26:48 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-05-27 15:26:48 -0700 |
| commit | 8f67ac19a761b8d3ecc80485c3f54aa6ba4fa910 (patch) | |
| tree | d5a2aba4e2e762b283e7cfe60f00e1f239105bbe /docs/_layouts | |
| parent | 6c3f833076a9fa68601741e3e21bd07ad79b7d8a (diff) | |
| parent | db44e4b311317ef760f8412cc33c84146959b248 (diff) | |
| download | bootstrap-8f67ac19a761b8d3ecc80485c3f54aa6ba4fa910.tar.xz bootstrap-8f67ac19a761b8d3ecc80485c3f54aa6ba4fa910.zip | |
Merge branch 'v4-dev' into v4-docs-streamlined
Diffstat (limited to 'docs/_layouts')
| -rw-r--r-- | docs/_layouts/default.html | 4 | ||||
| -rw-r--r-- | docs/_layouts/docs.html | 15 |
2 files changed, 13 insertions, 6 deletions
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index dab3d5665..e3642ac6d 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -12,9 +12,9 @@ {% include nav-home.html %} - <div id="content"> + <main id="content" role="main"> {{ content }} - </div> + </main> {% include footer.html %} </body> diff --git a/docs/_layouts/docs.html b/docs/_layouts/docs.html index b8a2a73d1..c44275f1f 100644 --- a/docs/_layouts/docs.html +++ b/docs/_layouts/docs.html @@ -12,15 +12,22 @@ {% include nav-home.html %} - <div class="container mt-4"> + <div class="bd-pageheader"> + <div class="container"> + {% include page-headers.html %} + {% include ads.html %} + </div> + </div> + + <div class="container"> <div class="row"> - <div class="col-12 col-md-3 bd-sidebar"> + <div class="col-12 col-md-3 push-md-9 bd-sidebar"> {% include nav-docs.html %} </div> - <div class="col-12 col-md-9 bd-content"> + <main class="col-12 col-md-9 pull-md-3 bd-content" role="main"> <h1 class="bd-title" id="content">{{ page.title }}</h1> {{ content }} - </div> + </main> </div> </div> |
