first commit
All checks were successful
Deploying Website / build (push) Successful in 16s

This commit is contained in:
Maxime Delporte
2025-04-04 18:47:44 -03:00
commit 51ea013bc3
822 changed files with 18303 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
"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"
}