Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPatrick H. Lauke <redux@splintered.co.uk>2014-12-07 17:43:50 +0300
committerPatrick H. Lauke <redux@splintered.co.uk>2014-12-07 23:56:29 +0300
commit8af8f7d5404536782f76e0ca02e01497f1e8b0ae (patch)
treedd0eed63afd74b904b1f56a48a4b1a76048b1833 /docs
parentc609272ac199cc9806ad6c4cf8c7f8f4253fb347 (diff)
Make sidebar navigation actual ``<nav>``
Diffstat (limited to 'docs')
-rw-r--r--docs/_layouts/default.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html
index 40ff5e0cc5..51191dc5eb 100644
--- a/docs/_layouts/default.html
+++ b/docs/_layouts/default.html
@@ -26,8 +26,8 @@
{{ content }}
</div>
{% unless page.fullwidth == true %}
- <div class="col-md-3">
- <div class="bs-docs-sidebar hidden-print hidden-xs hidden-sm" role="complementary">
+ <div class="col-md-3" role="complementary">
+ <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm">
<ul class="nav bs-docs-sidenav">
{% if page.slug == "getting-started" %}
{% include nav/getting-started.html %}
@@ -53,7 +53,7 @@
Preview theme
</a>
{% endif %}
- </div>
+ </nav>
</div>
{% endunless %}
</div>