baseof.html 897 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{{ .Page.Title }}</title>
  5. <!------ ADD COMMON HEADERS -------->
  6. {{- partial "header.html" . -}}
  7. <!------ ADD PAGE SPECIFIC HEADERS ------->
  8. {{ block "header" . }} {{ end }}
  9. <!-- ADD GOOGLE ANALYTICS IF ENABLED -->
  10. {{ if .Site.GoogleAnalytics }}
  11. {{ template "_internal/google_analytics_async.html" . }}
  12. {{ end }}
  13. </head>
  14. <body>
  15. <div class="container-fluid bg-dimmed wrapper">
  16. <!----- ADD NAVBAR --------------->
  17. {{ block "navbar" . }} {{ end }}
  18. <!----- ADD PAGE CONTENT --------->
  19. {{ block "content" . }} {{ end }}
  20. </div>
  21. <!------- ADD FOOTER ------------>
  22. {{- partial "footer.html" . -}}
  23. <!------- ADD COMMON SCRIPTS ------->
  24. {{ partial "scripts.html" . }}
  25. <!------- ADD PAGE SPECIFIC SCRIPTS ------>
  26. {{ block "scripts" . }} {{ end }}
  27. </body>
  28. </html>