diff options
author | silverwind <me@silverwind.io> | 2020-11-13 18:23:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-13 12:23:22 -0500 |
commit | a015684069109dd23dfd347a1785a9a19e51e545 (patch) | |
tree | f762d924581d49047935b4bfa289a67d533e7088 /templates/pwa | |
parent | c296f4fed66288431fa7ec3a64f990beccd29eb1 (diff) | |
download | gitea-a015684069109dd23dfd347a1785a9a19e51e545.tar.gz gitea-a015684069109dd23dfd347a1785a9a19e51e545.zip |
Reindent manifest.json (#13544)
Now it's properly indented to 2-space.
Diffstat (limited to 'templates/pwa')
-rw-r--r-- | templates/pwa/manifest_json.tmpl | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/templates/pwa/manifest_json.tmpl b/templates/pwa/manifest_json.tmpl index 793b42f2e1..b125690d5f 100644 --- a/templates/pwa/manifest_json.tmpl +++ b/templates/pwa/manifest_json.tmpl @@ -1,31 +1,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}}" - } + "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}}" +} |