Notes app :)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add pwa stuffs

j0.lol a260e53e bd84ba25

+32
static/img/tmrw-192.png

This is a binary file and will not be displayed.

static/img/tmrw-512.png

This is a binary file and will not be displayed.

static/img/tmrw-mask-512.png

This is a binary file and will not be displayed.

+28
static/meta/manifest.webmanifest
··· 1 + { 2 + "name": "TMRW", 3 + "display": "standalone", 4 + "background_color": "#f1f0f5", 5 + "theme_color": "#2d1c76", 6 + "icons": [ 7 + { 8 + "src": "/static/img/tmrw-192.png", 9 + "type": "image/png", 10 + "sizes": "192x192" 11 + }, 12 + { 13 + "src": "/static/img/tmrw-mask-512.png", 14 + "type": "image/png", 15 + "sizes": "512x512", 16 + "purpose": "maskable" 17 + }, 18 + { 19 + "src": "/static/img/tmrw-512.png", 20 + "type": "image/png", 21 + "sizes": "512x512" 22 + } 23 + ], 24 + "categories": [ 25 + "productivity", 26 + "utilities" 27 + ] 28 + }
+4
templates/wrap.html
··· 20 20 <!-- 180×180 --> 21 21 <link rel="apple-touch-icon" href="/static/img/apple-touch-icon.png" /> 22 22 23 + <!-- PWA metadata --> 24 + <link rel="manifest" href="/manifest.webmanifest"> 25 + 26 + 23 27 {% block head_extra %}{% endblock %} 24 28 25 29 <title>{% block title %}TMRW{% endblock %}</title>