docs.html 901 B

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