A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

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

chore: meta tags clean up

+18 -4
+1 -4
src/_includes/layouts/diffuse.vto
··· 23 23 <link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" /> 24 24 <link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" /> 25 25 <link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" /> 26 - <!-- TODO: <link rel="manifest" href="site.webmanifest" />--> 27 - <link rel="mask-icon" href="safari-pinned-tab.svg" color="#8a90a9" /> 28 - <meta name="msapplication-TileColor" content="#8a90a9" /> 29 - <meta name="theme-color" content="#8a90a9" /> 26 + <link rel="manifest" href="site.webmanifest" /> 30 27 31 28 <!-- Preloads --> 32 29 {{ for url of (preloads ?? []) }}
+17
src/site.webmanifest
··· 1 + { 2 + "name": "Diffuse", 3 + "short_name": "Diffuse", 4 + "icons": [ 5 + { 6 + "src": "favicons/android-chrome-192x192.png", 7 + "sizes": "192x192", 8 + "type": "image/png" 9 + }, 10 + { 11 + "src": "favicons/android-chrome-512x512.png", 12 + "sizes": "512x512", 13 + "type": "image/png" 14 + } 15 + ], 16 + "display": "standalone" 17 + }