* feat: Switch to SVG logo; use it (and new bitmaps) in more places * Run images through image_optim * Copy icons from base template * Tint icons red when in dev mode
31 lines
927 B
JSON
31 lines
927 B
JSON
{% load static %}
|
|
{
|
|
"name": "IETF Datatracker",
|
|
"short_name": "Datatracker",
|
|
"icons": [
|
|
{
|
|
{% if server_mode and server_mode == "production" %}
|
|
"src": "{% static 'ietf/images/ietf-logo-nor-192.png' %}",
|
|
{% else %}
|
|
"src": "{% static 'ietf/images/ietf-logo-nor-192-dev.png' %}",
|
|
{% endif %}
|
|
"sizes": "192x192",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
{% if server_mode and server_mode == "production" %}
|
|
"src": "{% static 'ietf/images/ietf-logo-nor-512.png' %}",
|
|
{% else %}
|
|
"src": "{% static 'ietf/images/ietf-logo-nor-512-dev.png' %}",
|
|
{% endif %}
|
|
"sizes": "512x512",
|
|
"type": "image/png"
|
|
}],
|
|
"theme_color": "#ffffff",
|
|
{% if server_mode and server_mode == "production" %}
|
|
"background_color": "#ffffff"
|
|
{% else %}
|
|
"background_color": "#ffc4c4"
|
|
{% endif %}
|
|
}
|