feat(head): add favicon setting in config.yaml

closes https://github.com/CaiJimmy/hugo-theme-stack/issues/42
This commit is contained in:
Jimmy Cai 2020-12-20 11:34:08 +01:00
parent 25a72940b8
commit c0aed5be66
2 changed files with 5 additions and 0 deletions

View File

@ -20,6 +20,7 @@ params:
- post
featuredImageField: image
rssFullContent: true
favicon:
dateFormat:
published: Jan 02, 2006

View File

@ -17,4 +17,8 @@
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
{{- end -}}
{{ with .Site.Params.favicon }}
<link rel="shortcut icon" href="{{ . }}" />
{{ end }}
{{- partial "head/custom.html" . -}}