diff options
| author | Kevin Suttle <[email protected]> | 2013-08-11 23:40:22 -0400 |
|---|---|---|
| committer | Kevin Suttle <[email protected]> | 2013-08-11 23:40:22 -0400 |
| commit | 9d5473255bcd1c7d37612e8098f463280df8a31a (patch) | |
| tree | fad49bf761461c067259c4c395141b2411f55133 | |
| parent | 2a8e5765b999ab785558966034a0d17d1b90830e (diff) | |
| download | bootstrap-9d5473255bcd1c7d37612e8098f463280df8a31a.tar.xz bootstrap-9d5473255bcd1c7d37612e8098f463280df8a31a.zip | |
Map 'role="complementary"' to proper aside element
http://blog.paciellogroup.com/2013/02/using-wai-aria-landmarks-2013/#tablex
http://www.w3.org/TR/wai-aria/roles#complementary
| -rw-r--r-- | _layouts/default.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 1faac9b53..336eb8575 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -26,7 +26,7 @@ <div class="container bs-docs-container"> <div class="row"> <div class="col-lg-3"> - <div class="bs-sidebar" role="complementary"> + <aside class="bs-sidebar" role="complementary"> <ul class="nav bs-sidenav"> {% if page.slug == "getting-started" %} {% include nav-getting-started.html %} @@ -40,7 +40,7 @@ {% include nav-customize.html %} {% endif %} </ul> - </div> + </aside> </div> <main class="col-lg-9" role="main"> {{ content }} |
