UNPKG

901 BHTMLView Raw
1<!doctype html>
2<html lang="en">
3 <head>
4 {% include header.html %}
5 </head>
6 <body>
7 {% include skippy.html %}
8
9 {% include docs-navbar.html %}
10
11 <div class="container-fluid">
12 <div class="row flex-xl-nowrap">
13 <div class="col-12 col-md-3 col-xl-2 bd-sidebar">
14 {% include docs-sidebar.html %}
15 </div>
16
17 {% if page.toc %}
18 <div class="d-none d-xl-block col-xl-2 bd-toc">
19 {{ content | toc_only }}
20 </div>
21 {% endif %}
22
23 <main class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content {{ page.group }}" role="main">
24 <h1 class="bd-title" id="content">{{ page.title | smartify }}</h1>
25 <p class="bd-lead">{{ page.description | smartify }}</p>
26 {% include ads.html %}
27 {{ content }}
28 </main>
29 </div>
30 </div>
31
32 {% include scripts.html %}
33 </body>
34</html>