head.html 1.2 KB

1234567891011121314151617181920212223
  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. <meta name="canonical" content="{{ .Permalink }}" />
  16. <link href="/css/tailwind.min.css" rel="stylesheet" />
  17. <link rel="preload" as="style" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" onload="this.onload=null;this.rel='stylesheet'" />
  18. <noscript><link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" /></noscript>
  19. <script src="/js/Bumble.js"></script>
  20. </head>