baseof.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{{ .Page.Title }}</title>
  5. <!------ ADD COMMON HEADERS -------->
  6. {{- partial "header.html" . -}}
  7. {{ template "_internal/opengraph.html" . }}
  8. <!------ ADD PAGE SPECIFIC HEADERS ------->
  9. {{ block "header" . }} {{ end }}
  10. <!-- ADD GOOGLE ANALYTICS IF ENABLED -->
  11. {{ if site.GoogleAnalytics }}
  12. {{ template "_internal/google_analytics_async.html" . }}
  13. {{ end }}
  14. </head>
  15. <body data-spy="scroll" data-target="#TableOfContents" data-offset="80">
  16. <div class="container-fluid bg-dimmed wrapper">
  17. <!----- ADD NAVBAR --------------->
  18. {{ block "navbar" . }} {{ end }}
  19. <!----- ADD SIDEBAR --------------->
  20. {{ block "sidebar" . }} {{ end }}
  21. <!----- ADD PAGE CONTENT --------->
  22. {{ block "content" . }} {{ end }}
  23. <!----- ADD TABLE OF CONTENTS ----------->
  24. {{ block "toc" . }} {{ end }}
  25. </div>
  26. <!------- ADD FOOTER ------------>
  27. {{ $footerTemplate:= site.Params.footer.template | default "footer.html" }}
  28. {{- partial $footerTemplate . -}}
  29. <!------- ADD COMMON SCRIPTS ------->
  30. {{ partial "scripts.html" . }}
  31. <!------- ADD PAGE SPECIFIC SCRIPTS ------>
  32. {{ block "scripts" . }} {{ end }}
  33. </body>
  34. </html>