All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m57s
26 lines
507 B
HTML
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"
|
|
}
|
|
]
|
|
}
|
|
|