aboutsummaryrefslogtreecommitdiff
path: root/_layouts/docs.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-06-17 10:28:19 -0700
committerMark Otto <[email protected]>2017-06-17 13:13:13 -0700
commit2a579e546cb97e7aa33e8ff4685219974087df41 (patch)
tree41d02c69efec0a9d3968fe9e8c80d89bebe35b50 /_layouts/docs.html
parent2fb65c2b619648784a150113c639ba2e35deaa32 (diff)
downloadbootstrap-2a579e546cb97e7aa33e8ff4685219974087df41.tar.xz
bootstrap-2a579e546cb97e7aa33e8ff4685219974087df41.zip
use flexbox order property to change order of content for screenreaders
Diffstat (limited to '_layouts/docs.html')
-rw-r--r--_layouts/docs.html13
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>