32 lines
811 B
JSON
32 lines
811 B
JSON
|
{
|
||
|
"$schema": "https://json.schemastore.org/web-manifest-combined.json",
|
||
|
"name": "{{ .Site.Title }}",
|
||
|
"short_name": "{{ .Site.Title }}",
|
||
|
"start_url": "/",
|
||
|
"display": "standalone",
|
||
|
"background_color": "{{ .Site.Params.backgroundColor | default "#242629" }}",
|
||
|
"theme_color": "{{ .Site.Params.accentColor | default "#db5793" }}"
|
||
|
{{ if .Site.Params.description }}
|
||
|
,
|
||
|
"description": "{{ .Site.Params.description }}"
|
||
|
{{ end }}
|
||
|
{{ if .Site.Params.icon512 }}
|
||
|
,
|
||
|
"icons": [
|
||
|
{
|
||
|
"src": "{{ .Site.Params.icon512 }}",
|
||
|
"sizes": "512x512",
|
||
|
"type": "image/png",
|
||
|
"purpose": "maskable"
|
||
|
},
|
||
|
{
|
||
|
"src": "{{ .Site.Params.icon512 }}",
|
||
|
"sizes": "512x512",
|
||
|
"type": "image/png",
|
||
|
"purpose": "any"
|
||
|
}
|
||
|
]
|
||
|
{{ end }}
|
||
|
}
|
||
|
|