forked from Mirrors/gomuks
web/index: add PWA manifest
This commit is contained in:
parent
43b454eeed
commit
9a125f4240
2 changed files with 18 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<link rel="icon" type="image/png" href="gomuks.png"/>
|
||||
<link rel="manifest" href="manifest.json"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content"/>
|
||||
<title>gomuks web</title>
|
||||
<!-- etag placeholder -->
|
||||
|
|
17
web/public/manifest.json
Normal file
17
web/public/manifest.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"name": "gomuks web",
|
||||
"description": "A Matrix client written in Go",
|
||||
"categories": ["social", "productivity"],
|
||||
"icons": [{
|
||||
"src": "gomuks.png",
|
||||
"sizes": "883x883",
|
||||
"type": "image/png"
|
||||
}],
|
||||
"protocol_handlers": [{
|
||||
"protocol": "matrix",
|
||||
"url": "#/uri/%s"
|
||||
}],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#00c853"
|
||||
}
|
Loading…
Add table
Reference in a new issue