aboutsummaryrefslogtreecommitdiffstats
path: root/src/assets/manifest.njk
blob: 350c7afac2c61d92981e82bc241d751fda091fb1 (plain) (blame)
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
32
33
34
35
36
37
38
---
permalink: /app.webmanifest
---
{
  "$schema": "https://json.schemastore.org/web-manifest-combined.json",
  "name": "{{ metadata.title }}",
  
  "lang": "en-GB",
  "start_url": "{{ '/' | url }}",
  "id": "{{ '/' | url }}",
  "scope": "{{ '/' | url }}",
  "display": "minimal-ui",
  "background_color": "#8b0000",
  "theme_color": "#8b0000",
  "description": "{{ metadata.description }}",
  "icons": [
    {
      "src": "{{ '/favicon.ico' | url }}",
      "sizes": "any",
      "type": "image/vnd.microsoft.icon"
    },
    {
      "src": "{{ '/favicon/icon.svg' | url }}",
      "sizes": "any",
      "type": "image/svg+xml"
    },
    { 
      "src": "{{ '/favicon/192.png' | url }}",
      "type": "image/png",
      "sizes": "192x192"
    },
    {
       "src": "{{ '/favicon/512.png' | url }}",
       "type": "image/png",
       "sizes": "512x512" 
    }
  ]
}