Maxime Delporte 51ea013bc3
All checks were successful
Deploying Website / build (push) Successful in 16s
first commit
2025-04-04 18:47:44 -03:00

26 lines
608 B
JSON

{
"name": "{{.Site.Title}}",
"short_name": "{{.Site.Title}}",
{{- if (fileExists "assets/image/favicon.png") }}
{{ $icon := resources.Get "image/favicon.png" }}
"icons": [{
"src": "{{ ($icon.Resize "192x192").RelPermalink }}",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "{{ ($icon.Resize "512x512").RelPermalink }}",
"type": "image/png",
"sizes": "512x512"
}
],
{{- end }}
"start_url": "/",
"scope": "/",
{{- with .Site.Params.color}}
"theme_color": "{{.}}",
"background_color": "{{.}}",
{{- end }}
"display": "standalone"
}