Update webmanifest

This commit is contained in:
augustin64 2023-06-23 22:37:53 +02:00
parent ec105dc187
commit ad04e395ab
5 changed files with 14 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

Before

Width:  |  Height:  |  Size: 225 KiB

After

Width:  |  Height:  |  Size: 225 KiB

View File

@ -1,12 +1,22 @@
{
"background_color": "white",
"background_color": "#eff1f5",
"description": "Partitioncloud",
"display": "fullscreen",
"icons": [
{
"src": "static/icon.png",
"src": "/static/icons/icon.png",
"sizes": "2000x2000",
"type": "image/png"
},
{
"src": "/static/icons/512.png",
"sizes": "128x128 256x256 512x512 ",
"type": "image/png"
},
{
"src": "/static/icons/144.png",
"sizes": "48x48 72x72 96x96 144x144",
"type": "image/png"
}
],
"name": "PartitionCloud",

View File

@ -7,8 +7,8 @@
<title>{% block title %}{% endblock %} - PartitionCloud</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='mobile.css') }}">
<link rel="icon" type="image/png" href="{{ url_for('static', filename='icon.png') }}" />
<link rel="apple-touch-icon" href="{{ url_for('static', filename='icon.png') }}">
<link rel="icon" type="image/png" href="{{ url_for('static', filename='icons/512.png') }}" />
<link rel="apple-touch-icon" href="{{ url_for('static', filename='icons/512.png') }}">
<link rel="manifest" href="{{ url_for('static', filename='manifest.webmanifest') }}" />
</head>