baseof.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!doctype html>
  2. <html lang="{{ .Lang }}">
  3. <head>
  4. {{ partial "head" . }}
  5. <link rel="canonical" href="{{ .Permalink }}">
  6. <title>
  7. {{ block "title" . }}
  8. {{ .Title}}{{ if ne .Title .Site.Title }} | {{ .Site.Title }}{{ end }}
  9. {{ end }}
  10. </title>
  11. <!-- Bootstrap CSS -->
  12. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/css/bootstrap.min.css"
  13. integrity="sha512-GQGU0fMMi238uA+a/bdWJfpUGKUkBdgfFdgBm72SUQ6BeyWjoY/ton0tEjH+OSH9iP4Dfh+7HM0I9f5eR0L/4w=="
  14. crossorigin="anonymous" referrerpolicy="no-referrer" />
  15. <link href='{{ "css/style.css" | relURL }}' rel="stylesheet">
  16. {{ range .AlternativeOutputFormats -}}
  17. <link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
  18. {{ end -}}
  19. {{ template "_internal/google_analytics_async.html" . }}
  20. </head>
  21. <body>
  22. {{ block "header" . }}
  23. {{ partial "header" . }}
  24. {{ end }}
  25. {{ block "body" . }}
  26. {{ block "main" . }}
  27. {{ end }}
  28. {{ end }}
  29. {{ block "footer" . }}
  30. {{ partial "footer" . }}
  31. {{ end }}
  32. <!-- Bootstrap and Popper -->
  33. <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/js/bootstrap.bundle.min.js"
  34. integrity="sha512-pax4MlgXjHEPfCwcJLQhigY7+N8rt6bVvWLFyUMuxShv170X53TRzGPmPkZmGBhk+jikR8WBM4yl7A9WMHHqvg=="
  35. crossorigin="anonymous" referrerpolicy="no-referrer"></script>
  36. <script src="/js/main.js"></script>
  37. </body>
  38. </html>