123456789101112131415161718192021222324252627282930313233343536373839 |
- <head profile="http://gmpg.org/xfn/11">
- <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.Description }}{{ 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="author" href="./humans.txt" />
- <link rel="pgpkey authn" href="/.well-known/apisnecros.txt" />
- <link rel="alternate" type="application/rss+xml" title="RSS feed for VZQK50.com" href="/index.xml" />
- <link rel="indieweb" href="/.well-known/indieweb.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">
- <link rel="webmention" href="https://webmention.io/www.vzqk50.com/webmention" />
- <link rel="pingback" href="https://webmention.io/www.vzqk50.com/xmlrpc" />
-
- {{- template "_internal/opengraph.html" . }}
- <meta name="canonical" content="{{ .Permalink }}" />
-
- <link rel="preload" as="style" href="/css/tailwind.min.css" onload="this.onload=null;this.rel='stylesheet'" />
- <noscript><link rel="stylesheet" href="/css/tailwind.min.css" /></noscript>
- <link rel="preload" as="style" href="/css/unicons/line.css" onload="this.onload=null;this.rel='stylesheet'" />
- <noscript><link rel="stylesheet" href="/css/unicons/line.css" /></noscript>
- <script src="/js/Bumble.js"></script>
- </head>
|