Files
django-pwa/pwa/templates/manifest.json
2017-02-04 22:20:40 -07:00

12 lines
296 B
JSON

{% load pwa %}
{
"name": {{ PWA_APP_NAME|js }},
"short_name": {{ PWA_APP_NAME|js }},
"description": {{ PWA_APP_DESCRIPTION|js }},
"start_url": "/",
"display": "standalone",
"background_color": "#fff",
"theme_color": {{ PWA_APP_THEME_COLOR|js }},
"icons": {{ PWA_APP_ICONS|js }}
}