diff options
| author | Mark Otto <[email protected]> | 2017-06-17 10:28:19 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-06-17 13:13:13 -0700 |
| commit | 2a579e546cb97e7aa33e8ff4685219974087df41 (patch) | |
| tree | 41d02c69efec0a9d3968fe9e8c80d89bebe35b50 /_layouts | |
| parent | 2fb65c2b619648784a150113c639ba2e35deaa32 (diff) | |
| download | bootstrap-2a579e546cb97e7aa33e8ff4685219974087df41.tar.xz bootstrap-2a579e546cb97e7aa33e8ff4685219974087df41.zip | |
use flexbox order property to change order of content for screenreaders
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/docs.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/_layouts/docs.html b/_layouts/docs.html index feecf3875..2e0e1e85d 100644 --- a/_layouts/docs.html +++ b/_layouts/docs.html @@ -17,18 +17,19 @@ <div class="col-12 col-md-3 col-xl-2 bd-sidebar"> {% include docs-sidebar.html %} </div> - <main class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content" role="main"> - <h1 class="bd-title" id="content">{{ page.title }}</h1> - <p class="bd-lead">{{ page.description }}</p> - {% include ads.html %} - {{ content }} - </main> {% if page.toc %} <div class="d-none d-xl-block col-xl-2 bd-toc"> {{ content | toc_only }} </div> {% endif %} + + <main class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content" role="main"> + <h1 class="bd-title" id="content">{{ page.title }}</h1> + <p class="bd-lead">{{ page.description }}</p> + {% include ads.html %} + {{ content }} + </main> </div> </div> |
