diff options
author | Sorin Davidoi <sorin.davidoi@protonmail.com> | 2019-10-03 19:54:26 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com> | 2019-10-03 20:42:44 +0200 |
commit | 1cd4c9b051164133f5b386b60ffdf20bc63699e7 (patch) | |
tree | 7761a97bf795fd01a16abeacb859768b52cb8500 | |
parent | 62d338fedbf909178823a299e79d14a947ac6335 (diff) |
fix(heads): Add protocol to gmpg URL
The resource is available over HTTPS.
https://webhint.io/docs/user-guide/hints/hint-no-protocol-relative-urls/
-rw-r--r-- | layouts/partials/head.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 30ff316..1814f00 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"{{with .Site.LanguageCode}} xml:lang="{{.}}" lang="{{.}}"{{end}}> <head> - <link href="//gmpg.org/xfn/11" rel="profile"> + <link href="https://gmpg.org/xfn/11" rel="profile"> <meta http-equiv="content-type" content="text/html; charset=utf-8"> {{ hugo.Generator }} |