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