Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/JugglerX/hugo-whisper-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Austin <rob@jugglerdigital.com>2019-03-14 04:07:15 +0300
committerRobert Austin <rob@jugglerdigital.com>2019-03-14 04:07:15 +0300
commit153157092da2079d2282127ce9842e2a4b3157ba (patch)
tree68725678a8f4b737f8a7b6b8d156571e24e7c0f8
parentd87fbd97ccafd10e217e6b20c8392b95022ada5e (diff)
update favicon to absURL
-rw-r--r--layouts/_default/baseof.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 05d8666..608fea2 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -7,7 +7,7 @@
<title>{{ block "title" . }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ block "meta_tags" . }}{{end}}
- <link rel="icon" href="{{ .Site.BaseURL }}favicon.png">
+ <link rel="icon" href="{{ "favicon.png" | absURL}}">
{{ if .Site.IsServer }}
{{ $style := resources.Get "scss/style.scss" | toCSS (dict "targetPath" "css/style.css" "enableSourceMap" true) }}