added manifest and icons
This commit is contained in:
parent
6c0cb35842
commit
325bf5b002
|
|
@ -18,7 +18,9 @@
|
||||||
"Bash(cat:*)",
|
"Bash(cat:*)",
|
||||||
"Bash(dir:*)",
|
"Bash(dir:*)",
|
||||||
"Bash(dotnet add:*)",
|
"Bash(dotnet add:*)",
|
||||||
"Bash(del \"C:\\\\work\\\\chrka\\\\Koogle2025\\\\KoogleApp\\\\src\\\\Koogle.Application\\\\DTOs\\\\DayProtocolDto.cs\")"
|
"Bash(del \"C:\\\\work\\\\chrka\\\\Koogle2025\\\\KoogleApp\\\\src\\\\Koogle.Application\\\\DTOs\\\\DayProtocolDto.cs\")",
|
||||||
|
"Bash(ls -la \"C:\\\\work\\\\chrka\\\\Koogle2025\\\\KoogleApp\\\\src\\\\Koogle.Web\\\\wwwroot\"\" | grep -E \"icon)",
|
||||||
|
"Bash(png \")"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,13 @@
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||||
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
||||||
|
<meta name="apple-mobile-web-app-title" content="KOOGLE" />
|
||||||
|
<meta name="mobile-web-app-capable" content="yes" />
|
||||||
|
<link rel="manifest" href="manifest.webmanifest" />
|
||||||
|
<link rel="apple-touch-icon" href="icon-192.png" />
|
||||||
<base href="/" />
|
<base href="/" />
|
||||||
<link rel="stylesheet" href="@Assets["app.css"]" />
|
<link rel="stylesheet" href="@Assets["app.css"]" />
|
||||||
<link rel="stylesheet" href="@Assets["Koogle.Web.styles.css"]" />
|
<link rel="stylesheet" href="@Assets["Koogle.Web.styles.css"]" />
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 39 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 202 KiB |
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"name": "KOOGLE",
|
||||||
|
"short_name": "KOOGLE",
|
||||||
|
"description": "Club Management App",
|
||||||
|
"start_url": "/",
|
||||||
|
"display": "standalone",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"theme_color": "#594AE2",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "icon-192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "icon-512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue