aboutsummaryrefslogtreecommitdiffstats
path: root/templates/pwa/manifest_json.tmpl
blob: 793b42f2e1c89c05fa41dc2a2172131020653e31 (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/gitea-lg.png",
        "type": "image/png",
        "sizes": "880x880"
      },
      {
        "src": "{{StaticUrlPrefix}}/img/gitea-sm.png",
        "type": "image/png",
        "sizes": "120x120"
      },
      {
        "src": "{{StaticUrlPrefix}}/img/gitea-512.png",
        "type": "image/png",
        "sizes": "512x512"
      },
      {
        "src": "{{StaticUrlPrefix}}/img/gitea-192.png",
        "type": "image/png",
        "sizes": "192x192"
      }
    ],
    "start_url": "{{AppSubUrl}}/",
    "scope": "{{AppSubUrl}}/",
    "background_color": "#FAFAFA",
    "display": "standalone",
    "theme_color": "{{ThemeColorMetaTag}}"
  }