mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-17 03:29:31 -07:00
14 lines
589 B
HTML
14 lines
589 B
HTML
{{- if site.Params.favicon -}}
|
|
{{- with site.Params.svgFavicon -}}
|
|
<link rel="icon" href="{{ . }}" />
|
|
{{- else -}}
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
{{- end -}}
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
{{- with site.Params.iconColor -}}
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="{{ . }}" />
|
|
{{- end -}}
|
|
{{- end -}}
|