Closes #199: manifest.json
BIN
docs-web/src/main/webapp/src/img/icons/icon-128x128.png
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
docs-web/src/main/webapp/src/img/icons/icon-144x144.png
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
docs-web/src/main/webapp/src/img/icons/icon-152x152.png
Normal file
After Width: | Height: | Size: 9.4 KiB |
BIN
docs-web/src/main/webapp/src/img/icons/icon-192x192.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
docs-web/src/main/webapp/src/img/icons/icon-384x384.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
docs-web/src/main/webapp/src/img/icons/icon-512x512.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
docs-web/src/main/webapp/src/img/icons/icon-72x72.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
docs-web/src/main/webapp/src/img/icons/icon-96x96.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
@ -7,6 +7,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="renderer" content="webkit" />
|
||||
<link rel="shortcut icon" href="../api/theme/image/logo" />
|
||||
<link rel="manifest" href="manifest.json" />
|
||||
<!-- ref:css style/style.min.css?@build.date@ -->
|
||||
<link rel="stylesheet" href="style/bootstrap.css" type="text/css" />
|
||||
<link rel="stylesheet" href="style/fontawesome.css" type="text/css" />
|
||||
|
51
docs-web/src/main/webapp/src/manifest.json
Normal file
@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "Sismics Docs",
|
||||
"short_name": "Sismics Docs",
|
||||
"theme_color": "#2ab2dc",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone",
|
||||
"Scope": "/",
|
||||
"start_url": "/",
|
||||
"icons": [
|
||||
{
|
||||
"src": "img/icons/icon-72x72.png",
|
||||
"sizes": "72x72",
|
||||
"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-152x152.png",
|
||||
"sizes": "152x152",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "img/icons/icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|