blob: dfe723f4da64c439b4a9de653a4d842faf1f5175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!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 home-nav.html %}
<!-- Page content of course! -->
{{ content }}
{% include footer.html %}
</body>
</html>
|