Add Support for iOS "Add to Homescreen"

* Adds basic Manifest.json
 * Adds Meta Tags for iOS
 * Adds Meta Tags for Android
 * Adds Logo for Manifest.json
 * Adds iOS Logo for homescreen
This commit is contained in:
JPyke3 2021-02-01 11:10:53 +01:00
parent bfcc4c985d
commit e837d84105
No known key found for this signature in database
GPG key ID: C7833DB15753380A
5 changed files with 47 additions and 1 deletions

BIN
static/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

15
static/manifest.json Normal file
View file

@ -0,0 +1,15 @@
{
"name": "Libreddit",
"short_name": "Libreddit",
"display": "standalone",
"background_color": "#2A3443",
"description": "An alternative private front-end to Reddit",
"theme_color": "#2A3443",
"icons": [
{
"src": "./logo.png",
"sizes": "512x512",
"type": "image/png"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB