Ajout manifest.json pour icônes raccourcis

This commit is contained in:
Claude Paroz 2025-09-08 19:40:14 +02:00
parent 161399d33d
commit 6d499815e6
8 changed files with 382 additions and 0 deletions

26
templates/manifest.json Normal file
View file

@ -0,0 +1,26 @@
{
"$schema": "https://json.schemastore.org/web-manifest-combined.json",
"name": "Bee's Gospel",
"short_name": "Bee's Gospel",
"start_url": "/",
"display": "standalone",
"background_color": "#fff",
"lang": "fr",
"icons": [{
"src": "{% static 'img/abeille-192.png' %}",
"sizes": "192x192",
"type": "image/png"
}, {
"src": "{% static 'img/abeille-512.png' %}",
"sizes": "512x512",
"type": "image/png"
}, {
"src": "{% static 'img/abeille-1024.png' %}",
"sizes": "1024x1024",
"type": "image/png"
},
{
"src": "{% static 'img/abeille.svg' %}",
"sizes": "any"
}]
}