baseof.html 609 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="{{ site.LanguageCode | default "en-us" }}">
  3. {{ partial "site_head.html" . }}
  4. <body id="top" data-spy="scroll" data-target="{{ if or .IsHome (eq .Type "widget_page") }}#navbar-main{{else}}#TableOfContents{{end}}" data-offset="71" {{ if not (.Scratch.Get "light") }}class="dark"{{end}}>
  5. {{ partial "search" . }}
  6. {{ partial "navbar.html" . }}
  7. {{ block "main" . }}{{ end }}
  8. {{ partial "site_js.html" . }}
  9. {{ if ne .Type "docs" }}
  10. <div class="container">
  11. {{ partial "site_footer.html" . }}
  12. </div>
  13. {{ end }}
  14. {{ partial "citation.html" . }}
  15. </body>
  16. </html>