diff options
author | Sorin Davidoi <sorin.davidoi@protonmail.com> | 2019-10-03 19:54:26 +0200 |
---|---|---|
committer | Nick White <git@njw.name> | 2019-10-10 16:45:27 +0100 |
commit | 09e12b747140a38bf025ff25ac2496495d9d0968 (patch) | |
tree | 744e6bea44846087f5036007445da7764f2a19c4 | |
parent | 09252008dbc94824c4adeb7802011cdb1b09c7af (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 ab68c44..749cce6 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 }} |