datatracker/ietf/templates/site.webmanifest
Lars Eggert 337d2ad387
feat: Switch to SVG logo; use it (and new bitmaps) in more places (#4035)
* 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
2022-05-31 17:03:43 -05:00

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 %}
}