Ajout manifest.json pour icônes raccourcis
This commit is contained in:
parent
161399d33d
commit
6d499815e6
8 changed files with 382 additions and 0 deletions
26
templates/manifest.json
Normal file
26
templates/manifest.json
Normal 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"
|
||||
}]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue