head.html 1.7 KB

123456789101112131415161718192021222324252627282930313233
  1. <head>
  2. <meta charset="UTF-8" />
  3. <meta http-equiv="content-language" content="en-us" />
  4. <meta name="author" content="{{ .Site.Params.Author }}" />
  5. <meta name="description" content="{{ if .Description }}{{ .Description }}{{ else }}{{ .Site.Params.SiteDescription }}{{ end }}" />
  6. {{- $keywords := "" }}
  7. {{- if .Params.Tags }}{{ $keywords = delimit .Params.Tags "," }}{{ end }}
  8. {{- if .IsHome }}{{ $keywords = delimit .Site.Params.Tags "," }}{{ end }}
  9. <meta name="keywords" content="{{ replace $keywords "-" " " }}" />
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  11. <link rel="pgpkey authn" href="/.well-known/apisnecros.txt" />
  12. {{- $title := print .Title " - " .Site.Title }}
  13. {{ if .IsHome }} {{ $title = .Site.Title }} {{ end }}
  14. <title>{{ $title }}</title>
  15. <link rel="apple-touch-icon" sizes="180x180" href="/imgs/favicons/apple-touch-icon.png">
  16. <link rel="icon" type="image/png" sizes="32x32" href="/imgs/favicons/favicon-32x32.png">
  17. <link rel="icon" type="image/png" sizes="16x16" href="/imgs/favicons/favicon-16x16.png">
  18. <link rel="manifest" href="/site.webmanifest">
  19. <meta name="msapplication-TileColor" content="#da532c">
  20. <meta name="theme-color" content="#ffffff">
  21. {{- template "_internal/opengraph.html" . }}
  22. {{- template "_internal/twitter_cards.html" . }}
  23. <meta name="canonical" content="{{ .Permalink }}" />
  24. <link href="/css/tailwind.min.css" rel="stylesheet" />
  25. <link rel="preload" as="style" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" onload="this.onload=null;this.rel='stylesheet'" />
  26. <noscript><link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" /></noscript>
  27. <script src="/js/Bumble.js"></script>
  28. </head>