diff options
| author | Laussel Loïc <[email protected]> | 2017-05-05 11:10:28 +0200 |
|---|---|---|
| committer | Patrick H. Lauke <[email protected]> | 2017-05-05 10:10:28 +0100 |
| commit | c81be7792990a2da0d60bf61b876db85bba9a61a (patch) | |
| tree | 98af385d79b9676176446ba03873a6d0acf4abc0 /docs/_layouts/docs.html | |
| parent | 7338da0cdb98e61c8b3741c29abea8e52357603b (diff) | |
| download | bootstrap-c81be7792990a2da0d60bf61b876db85bba9a61a.tar.xz bootstrap-c81be7792990a2da0d60bf61b876db85bba9a61a.zip | |
Add missing <main> element to documentation
includes explicit `role="main"` for IE10/IE11 compatibility
Diffstat (limited to 'docs/_layouts/docs.html')
| -rw-r--r-- | docs/_layouts/docs.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/_layouts/docs.html b/docs/_layouts/docs.html index 4c719c5d8..c44275f1f 100644 --- a/docs/_layouts/docs.html +++ b/docs/_layouts/docs.html @@ -24,10 +24,10 @@ <div class="col-12 col-md-3 push-md-9 bd-sidebar"> {% include nav-docs.html %} </div> - <div class="col-12 col-md-9 pull-md-3 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> |
