You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

baseof.html 638B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. {{- partial "docs/shared" -}}
  3. <html>
  4. <head>
  5. {{ partial "docs/html-head" . }}
  6. {{ partial "docs/inject/head" . }}
  7. </head>
  8. <body>
  9. <input type="checkbox" style="display: none" id="menu-control" />
  10. <main class="flex container">
  11. <aside class="book-menu fixed">
  12. {{ partial "docs/menu" . }}
  13. </aside>
  14. <div class="book-page">
  15. {{ partial "docs/mobile-header" . }}
  16. {{ template "main" . }}
  17. {{ partial "docs/git-footer" . }}
  18. </div>
  19. {{ template "toc" . }}
  20. </main>
  21. {{ partial "docs/inject/body" . }}
  22. {{ template "_internal/google_analytics_async.html" . }}
  23. </body>
  24. </html>