Add a Progressive Web App manifest

Add a valid apple-touch-icon link in header
Co-Authored-By: Tim Bannister <tim@scalefactory.com>
This commit is contained in:
Rémy Léone
2020-02-16 20:47:35 +01:00
committed by bryan
parent 6acffded64
commit 3fffe6eed0
4 changed files with 24 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 KiB

+22
View File
@@ -0,0 +1,22 @@
{
"short_name": "Kubernetes",
"name": "Kubernetes",
"description": "An open-source system for automating deployment, scaling, and management of containerized applications",
"icons": [
{
"src": "/images/kubernetes-192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "/images/kubernetes-512x512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": "/",
"background_color": "#326ce5",
"display": "browser",
"scope": "/",
"theme_color": "#326ce5"
}