Use absolute URLs in a couple cases where relative ones were used

This commit is contained in:
2021-10-15 17:45:03 -05:00
parent e7f9240383
commit a02da46706
2 changed files with 5 additions and 6 deletions

View File

@ -8,10 +8,10 @@
{{ end }}
{{ with .Site.Params.faviconICO }}
<link rel="icon" type="image/x-icon" href="{{.}}" />
<link rel="icon" type="image/x-icon" href="{{ . | absURL }}" />
{{ end }}
{{ with .Site.Params.faviconPNG }}
<link rel="icon" type="image/png" href="{{.}}" />
<link rel="icon" type="image/png" href="{{ . | absURL }}" />
{{ end }}
{{ range .AlternativeOutputFormats -}}