aboutsummaryrefslogtreecommitdiffstats
path: root/templates/pwa/manifest_json.tmpl
blob: 7eba1f45bb859f9a1173e5fe41789567e9985698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  "short_name": "Gitea",
  "name": "Gitea - Git with a cup of tea",
  "icons": [
    {
      "src": "{{StaticUrlPrefix}}/img/logo-lg.png",
      "type": "image/png",
      "sizes": "880x880"
    },
    {
      "src": "{{StaticUrlPrefix}}/img/logo-sm.png",
      "type": "image/png",
      "sizes": "120x120"
    },
    {
      "src": "{{StaticUrlPrefix}}/img/logo-512.png",
      "type": "image/png",
      "sizes": "512x512"
    },
    {
      "src": "{{StaticUrlPrefix}}/img/logo-192.png",
      "type": "image/png",
      "sizes": "192x192"
    }
  ],
  "start_url": "{{AppSubUrl}}/",
  "scope": "{{AppSubUrl}}/",
  "background_color": "#FAFAFA",
  "display": "standalone",
  "theme_color": "{{ThemeColorMetaTag}}"
}