cpred/assets/manifest.json.html
Florian fae93a92de
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m57s
Implement PWA features: add service worker, manifest, and offline page; enhance footer and header navigation
2025-03-18 21:51:15 +01:00

26 lines
507 B
HTML

---
permalink: /assets/manifest.json
---
{
"name": "{{ site.title }}",
"short_name": "CPRED",
"start_url": "{{ "/" | relative_url }}",
"display": "standalone",
"background_color": "#f8ef02",
"theme_color": "#ff003c",
"icons": [
{
"src": "{{ "/assets/img/icon-192.png" | relative_url }}",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "{{ "/assets/img/icon-512.png" | relative_url }}",
"sizes": "512x512",
"type": "image/png"
}
]
}