mirror of
https://github.com/tulir/gomuks.git
synced 2025-04-20 10:33:41 -05:00
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>
|
<head>
|
||||||
<meta charset="UTF-8"/>
|
<meta charset="UTF-8"/>
|
||||||
<link rel="icon" type="image/png" href="gomuks.png"/>
|
<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"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content"/>
|
||||||
<title>gomuks web</title>
|
<title>gomuks web</title>
|
||||||
<!-- etag placeholder -->
|
<!-- 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