1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 04:55:30 -04:00

fix /site.webmanifest

This commit is contained in:
2020-04-25 21:44:17 -04:00
parent adfa73b5fc
commit b8166296ef
7 changed files with 16 additions and 15 deletions

View File

@@ -5,17 +5,17 @@
"short_name": "{{ .Site.Params.domain }}",
"icons": [
{
"src": "{{ $android512.Permalink }}",
"src": "{{ $android512.Permalink | safeJS }}",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "{{ $android192.Permalink }}",
"src": "{{ $android192.Permalink | safeJS }}",
"sizes": "192x192",
"type": "image/png"
}
],
"start_url": "{{ .Site.BaseURL }}",
"start_url": "{{ .Site.BaseURL | safeJS }}",
"display": "browser",
"background_color": "#ffffff",
"theme_color": "#0e6dc2"