Use svg favicon if it exists

This commit is contained in:
ROCKTAKEY 2022-05-18 23:14:35 +09:00
parent 7c834a5a11
commit 85bf0ec59f
No known key found for this signature in database
GPG Key ID: B08FFD09D9FA311B
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,8 @@
<meta name="theme-color" content="{{ $.Site.Params.themeColor }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ "apple-touch-icon.png" | absURL }}">
{{ if os.FileExists "static/favicon.svg" }}
<link rel="icon" type="image/svg+xml" href="{{ "favicon.svg" | absURL }}">
{{ end }}
<link rel="icon" type="image/png" sizes="32x32" href="{{ "favicon-32x32.png" | absURL }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ "favicon-16x16.png" | absURL }}">
<link rel="manifest" crossorigin="use-credentials" href="{{ "site.webmanifest" | absURL }}">