mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
d5647e1f62
Additional markup for the skip link (to ensure it has the same effective width as the main content, and to provide an outline around just the link text) plus some basic styles...make it look a bit more in keeping with the overall look and feel of the docs.
18 lines
483 B
HTML
18 lines
483 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Meta, title, CSS, favicons, etc. -->
|
|
{% include header.html %}
|
|
</head>
|
|
<body class="bs-docs-home">
|
|
<a id="skippy" class="sr-only sr-only-focusable" href="#content"><div class="container"><span class="skiplink-text">Skip to main content</span></div></a>
|
|
|
|
<!-- Docs master nav -->
|
|
{% include nav/main.html %}
|
|
|
|
<!-- Page content of course! -->
|
|
{{ content }}
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|