22 lines
524 B
JSON
22 lines
524 B
JSON
{% load pictures %}
|
|
|
|
{
|
|
"name": "{{ parish.name }}",
|
|
"display": "standalone",
|
|
"scope": "{% url 'parish' parish.slug %}",
|
|
"start_url": "{% url 'parish' parish.slug %}",
|
|
"icons": [
|
|
{
|
|
"src": "{% img_url parish.icon file_type="png" width=192 %}",
|
|
"sizes": "192x192",
|
|
"type": "image/png",
|
|
"purpose": "maskable any"
|
|
},
|
|
{
|
|
"src": "{% img_url parish.icon file_type="png" width=512 %}",
|
|
"sizes": "512x512",
|
|
"type": "image/png",
|
|
"purpose": "maskable any"
|
|
}
|
|
]
|
|
} |