Merge pull request #19144 from remyleone/webmanifest

Add a Progressive Web App manifest
pull/20128/head
Kubernetes Prow Robot 2020-04-06 04:33:47 -07:00 committed by GitHub
commit f4dc270237
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 0 deletions

View File

@ -52,3 +52,5 @@
<script src="{{ "js/custom-jekyll/tags.js" | relURL }}"></script>
{{ with .Params.js }}{{ range (split . ",") }}<script src="{{ (trim . " ") | relURL }}"></script><!-- custom js added -->
{{ end }}{{ else }}<!-- no custom js detected -->{{ end }}
<link rel="manifest" href="/manifest.webmanifest">
<link rel="apple-touch-icon" href="/images/kubernetes-192x192.png">

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 KiB

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