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/default.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/default.html')
| -rw-r--r-- | docs/_layouts/default.html | 4 |
1 files changed, 2 insertions, 2 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> |
