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

closes https://github.com/CaiJimmy/hugo-theme-stack/issues/42
This commit is contained in:
Jimmy Cai 2020-12-20 11:38:49 +01:00 committed by GitHub
parent 25a72940b8
commit ddd6aa2d20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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" . -}}