mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 02:51:04 +00:00
Merge pull request #3606 from mritzmann/master
add manifest.json for android pwa
This commit is contained in:
commit
fbdc665487
3 changed files with 50 additions and 0 deletions
|
@ -38,6 +38,8 @@
|
||||||
|
|
||||||
<link rel="shortcut icon" type="image/x-icon" href="{{ asset('wallassets/themes/_global/img/appicon/favicon.ico') }}">
|
<link rel="shortcut icon" type="image/x-icon" href="{{ asset('wallassets/themes/_global/img/appicon/favicon.ico') }}">
|
||||||
|
|
||||||
|
<link rel="manifest" href="{{ asset('manifest.json') }}">
|
||||||
|
|
||||||
{% block css %}
|
{% block css %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block scripts %}
|
{% block scripts %}
|
||||||
|
|
48
web/manifest.json
Normal file
48
web/manifest.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
"short_name": "wallabag",
|
||||||
|
"name": "Save and classify articles. Read them later. Freely.",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "wallassets/themes/_global/img/appicon/apple-touch-icon-57.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "57x57"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "wallassets/themes/_global/img/appicon/apple-touch-icon-72.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "72x72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "wallassets/themes/_global/img/appicon/apple-touch-icon-76.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "76x76"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "wallassets/themes/_global/img/appicon/apple-touch-icon-114.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "114x114"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "wallassets/themes/_global/img/appicon/apple-touch-icon-120.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "120x120"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "wallassets/themes/_global/img/appicon/apple-touch-icon-144.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "144x144"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "wallassets/themes/_global/img/appicon/apple-touch-icon-152.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "152x152"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "wallassets/themes/_global/img/appicon/apple-touch-icon-512.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "512x512"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"display": "standalone",
|
||||||
|
"background_color": "#FFFFFF"
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
Loading…
Reference in a new issue