docs.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <div class="d-md-flex flex-md-row-reverse align-items-center justify-content-between">
  21. <a class="btn btn-sm btn-bd-light mb-2 mb-md-0"
  22. {% if page.group == 'faq' or page.group == 'online-editor' %}
  23. href="{{ site.repo }}/blob/develop/site/docs/{{ page.name }}"
  24. {% else %}
  25. href="{{ site.repo }}/blob/develop/site/docs/{{ page.group }}/{{ page.name }}"
  26. {% endif %}
  27. title="View and edit this file on GitHub" target="_blank" rel="noopener">
  28. View on GitHub
  29. </a>
  30. <h1 class="bd-title" id="content">
  31. {{ page.title | smartify }}
  32. </h1>
  33. </div>
  34. <p class="bd-lead">{{ page.description | smartify }}</p>
  35. {% include ads.html %}
  36. {{ content }}
  37. </main>
  38. </div>
  39. </div>
  40. {% include scripts.html %}
  41. </body>
  42. </html>