Updated favicon to support alternative file names and paths (#81)

This commit is contained in:
Chip Senkbeil 2018-09-13 14:22:53 -05:00 committed by Luiz F. A. de Prá
parent ce21f192aa
commit f83b230aa2
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@
<link rel="stylesheet" href="{{ . | absURL }}">
{{ end }}
<link rel="icon" type="image/png" href="{{ "/images/favicon-32x32.png" | absURL }}" sizes="32x32">
<link rel="icon" type="image/png" href="{{ "/images/favicon-16x16.png" | absURL }}" sizes="16x16">
<link rel="icon" type="image/png" href="{{ .Site.Params.favicon_32 | default "/images/favicon-32x32.png" | absURL }}" sizes="32x32">
<link rel="icon" type="image/png" href="{{ .Site.Params.favicon_16 | default "/images/favicon-16x16.png" | absURL }}" sizes="16x16">
{{ if .RSSLink }}
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />