baseof.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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
  13. rel="stylesheet"
  14. href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/css/bootstrap.min.css"
  15. integrity="sha512-GQGU0fMMi238uA+a/bdWJfpUGKUkBdgfFdgBm72SUQ6BeyWjoY/ton0tEjH+OSH9iP4Dfh+7HM0I9f5eR0L/4w=="
  16. crossorigin="anonymous"
  17. referrerpolicy="no-referrer"
  18. />
  19. <link href='{{ "css/style.css" | relURL }}' rel="stylesheet">
  20. {{ range .AlternativeOutputFormats -}}
  21. <link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
  22. {{ end -}}
  23. {{ template "_internal/google_analytics_async.html" . }}
  24. </head>
  25. <body>
  26. {{ block "header" . }}
  27. {{ partial "header" . }}
  28. {{ end }}
  29. {{ block "body" . }}
  30. <div class="container-fluid my-5 flex-grow-1">
  31. <div class="row justify-content-evenly">
  32. <div class="col-12 col-lg-8 blog-main">
  33. <div class="row g-3 content-list">
  34. {{ block "main" . }}
  35. {{ end }}
  36. </div>
  37. </div>
  38. {{ partial "sidebar.html" . }}
  39. </div>
  40. </div>
  41. {{ end }}
  42. {{ block "footer" . }}
  43. {{ partial "footer" . }}
  44. {{ end }}
  45. <!-- Bootstrap and Popper -->
  46. <script
  47. src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/js/bootstrap.bundle.min.js"
  48. integrity="sha512-pax4MlgXjHEPfCwcJLQhigY7+N8rt6bVvWLFyUMuxShv170X53TRzGPmPkZmGBhk+jikR8WBM4yl7A9WMHHqvg=="
  49. crossorigin="anonymous"
  50. referrerpolicy="no-referrer"
  51. ></script>
  52. </body>
  53. </html>