Implement PWA features: add service worker, manifest, and offline page; enhance footer and header navigation
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m57s

This commit is contained in:
2025-03-18 21:51:15 +01:00
parent 20b46587ee
commit fae93a92de
13 changed files with 147 additions and 32 deletions

25
assets/manifest.json.html Normal file
View File

@@ -0,0 +1,25 @@
---
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"
}
]
}