Merge pull request #19144 from remyleone/webmanifest
Add a Progressive Web App manifestpull/20128/head
commit
f4dc270237
|
@ -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 |
|
@ -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"
|
||||
}
|
Loading…
Reference in New Issue