Add webapp-manifest and move favicon to the assets folder

This commit is contained in:
Lukas Rieger (Blue) 2022-09-11 19:12:52 +02:00
parent 02c6cc9738
commit 204aca189f
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
5 changed files with 21 additions and 1 deletions

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

@ -0,0 +1,19 @@
{
"$schema": "https://json.schemastore.org/web-manifest-combined.json",
"name": "BlueMap",
"short_name": "BlueMap",
"start_url": "..",
"display": "standalone",
"background_color": "#181818",
"theme_color": "#006EDE",
"description": "BlueMap is a tool that generates 3D maps of your Minecraft worlds and displays them in your browser.",
"icons": [{
"src": "logoCircle512.png",
"sizes": "512x512",
"type": "image/png"
},{
"src": "logoCircle64.png",
"sizes": "64x64",
"type": "image/png"
}]
}

View File

@ -14,7 +14,8 @@
<meta name="og:type" content="website">
<meta name="og:image" content="https://avatars.githubusercontent.com/u/42522657?s=200&v=4">
<meta name="robots" content="index,nofollow">
<link rel="icon" href="favicon.png">
<link rel="icon" href="assets/favicon.png">
<link rel="manifest" href="assets/manifest.webmanifest">
<title>BlueMap</title>
</head>
<body>