Skip to content

Commit f4dc270

Browse files
authored
Merge pull request #19144 from remyleone/webmanifest
Add a Progressive Web App manifest
2 parents b937f2a + 9c864c9 commit f4dc270

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

layouts/partials/head.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,5 @@
5252
<script src="{{ "js/custom-jekyll/tags.js" | relURL }}"></script>
5353
{{ with .Params.js }}{{ range (split . ",") }}<script src="{{ (trim . " ") | relURL }}"></script><!-- custom js added -->
5454
{{ end }}{{ else }}<!-- no custom js detected -->{{ end }}
55+
<link rel="manifest" href="/manifest.webmanifest">
56+
<link rel="apple-touch-icon" href="/images/kubernetes-192x192.png">

static/images/kubernetes-192x192.png

85 KB
Loading

static/images/kubernetes-512x512.png

217 KB
Loading

static/manifest.webmanifest

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"short_name": "Kubernetes",
3+
"name": "Kubernetes",
4+
"description": "An open-source system for automating deployment, scaling, and management of containerized applications",
5+
"icons": [
6+
{
7+
"src": "/images/kubernetes-192x192.png",
8+
"type": "image/png",
9+
"sizes": "192x192"
10+
},
11+
{
12+
"src": "/images/kubernetes-512x512.png",
13+
"type": "image/png",
14+
"sizes": "512x512"
15+
}
16+
],
17+
"start_url": "/",
18+
"background_color": "#326ce5",
19+
"display": "browser",
20+
"scope": "/",
21+
"theme_color": "#326ce5"
22+
}

0 commit comments

Comments
 (0)