index.webmanifest 508 B

123456789101112131415161718
  1. {{- $scr := .Scratch -}}
  2. {
  3. "name": "{{site.Title}}",
  4. "lang": "{{site.LanguageCode}}",
  5. "theme_color": "{{ $scr.Get "primary" }}",
  6. "background_color": "{{ $scr.Get "primary" }}",
  7. "icons": [{
  8. "src": "img/icon-192.png",
  9. "sizes": "192x192",
  10. "type": "image/png"
  11. }{{- if (fileExists "static/img/icon-512.png") -}}, {
  12. "src": "img/icon-512.png",
  13. "sizes": "512x512",
  14. "type": "image/png"
  15. }{{end}}],
  16. "display": "standalone",
  17. "start_url": "./?utm_source=web_app_manifest"
  18. }