head.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <head profile="http://gmpg.org/xfn/11">
  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.Description }}{{ 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="author" href="./humans.txt" />
  12. <link rel="pgpkey authn" href="/.well-known/apisnecros.txt" />
  13. <link rel="alternate" type="application/rss+xml" title="RSS feed for VZQK50.com" href="/index.xml" />
  14. <link rel="indieweb" href="/.well-known/indieweb.txt" />
  15. {{- $title := print .Title " - " .Site.Title }}
  16. {{ if .IsHome }} {{ $title = .Site.Title }} {{ end }}
  17. <title>{{ $title }}</title>
  18. <link rel="apple-touch-icon" sizes="180x180" href="/imgs/favicons/apple-touch-icon.png">
  19. <link rel="icon" type="image/png" sizes="32x32" href="/imgs/favicons/favicon-32x32.png">
  20. <link rel="icon" type="image/png" sizes="16x16" href="/imgs/favicons/favicon-16x16.png">
  21. <link rel="manifest" href="/site.webmanifest">
  22. <meta name="msapplication-TileColor" content="#da532c">
  23. <meta name="theme-color" content="#ffffff">
  24. <link rel="webmention" href="https://webmention.io/www.vzqk50.com/webmention" />
  25. <link rel="pingback" href="https://webmention.io/www.vzqk50.com/xmlrpc" />
  26. {{- template "_internal/opengraph.html" . }}
  27. <meta name="canonical" content="{{ .Permalink }}" />
  28. <link rel="preload" as="style" href="/css/tailwind.min.css" onload="this.onload=null;this.rel='stylesheet'" />
  29. <noscript><link rel="stylesheet" href="/css/tailwind.min.css" /></noscript>
  30. <link rel="preload" as="style" href="/css/unicons/line.css" onload="this.onload=null;this.rel='stylesheet'" />
  31. <noscript><link rel="stylesheet" href="/css/unicons/line.css" /></noscript>
  32. <script src="/js/Bumble.js"></script>
  33. </head>