baseof.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <!-- Swiper CSS -->
  16. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
  17. <link href='{{ "css/style.css" | relURL }}' rel="stylesheet">
  18. {{ range .AlternativeOutputFormats -}}
  19. <link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
  20. {{ end -}}
  21. </head>
  22. <body>
  23. {{ block "header" . }}
  24. {{ partial "header" . }}
  25. {{ end }}
  26. {{ block "body" . }}
  27. {{ block "main" . }}
  28. {{ end }}
  29. {{ end }}
  30. {{ block "footer" . }}
  31. {{ partial "footer" . }}
  32. {{ end }}
  33. <!-- Bootstrap and Popper -->
  34. <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/js/bootstrap.bundle.min.js"
  35. integrity="sha512-pax4MlgXjHEPfCwcJLQhigY7+N8rt6bVvWLFyUMuxShv170X53TRzGPmPkZmGBhk+jikR8WBM4yl7A9WMHHqvg=="
  36. crossorigin="anonymous" referrerpolicy="no-referrer"></script>
  37. <!-- Swiper CDN -->
  38. <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
  39. <script src="/js/main.js"></script>
  40. </body>
  41. </html>