1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00

Webmanifest: re-use mask_icon as monochrome icon

This commit is contained in:
Rohan Kumar 2020-12-21 16:40:27 -08:00
parent 758460f258
commit 72e3765593
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479

View file

@ -2,10 +2,12 @@
{{- $512png := resources.Get "/favicon512.png" | resources.Fingerprint "md5" }}
{{- $1024svg := resources.Get "/favicon.svg" | resources.Fingerprint "md5" }}
{{- $maskablesvg := resources.Get "/maskable_android.svg" | resources.Fingerprint "md5" -}}
{{- $monochromesvg := resources.Get "/mask_apple.svg" | resources.Fingerprint "md5" -}}
{
"name": "Seirdy's Home",
"short_name": "Seirdy",
"description": "{{ .Site.Params.Description }}",
"lang": "en-US",
"display": "browser",
"scope": "/",
"start_url": "/",
@ -33,6 +35,12 @@
"sizes": "1024x1024 512x512 384x384 192x192 180x180 152x152",
"type": "image/svg+xml",
"purpose": "maskable"
},
{
"src": "{{ $monochromesvg.Permalink }}",
"sizes": "1024x1024 512x512 384x384 192x192 180x180 152x152",
"type": "image/svg+xml",
"purpose": "monochrome"
}
]
}