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:
parent
b937f2a0ac
commit
9c864c965b
|
@ -52,3 +52,5 @@
|
||||||
<script src="{{ "js/custom-jekyll/tags.js" | relURL }}"></script>
|
<script src="{{ "js/custom-jekyll/tags.js" | relURL }}"></script>
|
||||||
{{ with .Params.js }}{{ range (split . ",") }}<script src="{{ (trim . " ") | relURL }}"></script><!-- custom js added -->
|
{{ with .Params.js }}{{ range (split . ",") }}<script src="{{ (trim . " ") | relURL }}"></script><!-- custom js added -->
|
||||||
{{ end }}{{ else }}<!-- no custom js detected -->{{ end }}
|
{{ 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