add web app manifest

This commit is contained in:
bux 2016-12-27 09:36:18 +01:00
parent dff9e11569
commit 2da04846c8
9 changed files with 45 additions and 1 deletions

View File

@ -19,9 +19,11 @@
<meta property="og:url" content="{{ site.productionUrl }}{{ page.url }}" />
<meta property="og:image" content="{{ site.productionUrl }}{% if page.image != null %}{{ page.image }}{% else %}/img/slider01.jpg{% endif %}" />
<link rel="icon" type="image/png" href="{{ site.baseurl }}/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="{{ site.baseurl }}/favicon-32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="{{ site.baseurl }}/favicon.png" sizes="16x16" />
<meta name="theme-color" content="#951E14">
<link href="//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="{{ site.baseurl }}/css/app.css?v={{site.time | date: '%Y%m%d%H'}}" />
</head>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

42
docs/manifest.json Normal file
View File

@ -0,0 +1,42 @@
{
"name": "ACE3MOD",
"short_name": "ACE3",
"icons": [{
"src": "/img/icons/icon-48x48.png",
"sizes": "48x48",
"type": "image/png"
}, {
"src": "/img/icons/icon-96x96.png",
"sizes": "96x96",
"type": "image/png"
}, {
"src": "/img/icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
}, {
"src": "/img/icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png"
}, {
"src": "/img/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
}, {
"src": "/img/icons/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
}, {
"src": "/img/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
}, {
"src": "/img/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}],
"start_url": "/index.html",
"display": "browser",
"background_color": "#FFFFFF",
"theme_color": "#951e14",
"lang": "en-US"
}